summaryrefslogtreecommitdiff
path: root/hurd/=core.defs
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1992-01-01 20:35:43 +0000
committerMichael I. Bushnell <mib@gnu.org>1992-01-01 20:35:43 +0000
commitdf11449be03fb7113f70df25d55e946669c8f902 (patch)
treea44498da4204f679db093927a6669a8e996e8092 /hurd/=core.defs
parenta4632a1b4035c10e9f19c50fbc33c24ca681a103 (diff)
Formerly core.defs.~4~
Diffstat (limited to 'hurd/=core.defs')
-rw-r--r--hurd/=core.defs4
1 files changed, 2 insertions, 2 deletions
diff --git a/hurd/=core.defs b/hurd/=core.defs
index 125259f9..3d446b9c 100644
--- a/hurd/=core.defs
+++ b/hurd/=core.defs
@@ -25,7 +25,7 @@ subsystem core 32000;
/* Dump a core file for TASK in the file `core' in COREDIR.
HOST is the Mach host port for TASK.
- SIGNO is the signal that caused the process to dump core.
+ SIGNO and SIGCODE indicate the signal that caused the process to dump core.
LIMIT is the resource limit on the size of core files.
If the core file would be bigger than this, it is not written.
MODE gives the permissions for the core file. */
@@ -35,6 +35,6 @@ routine core_dump_task (
task: task_t;
host: host_t;
coredir: file_t;
- signo: int;
+ signo: int; sigcode: int;
limit: int;
mode: int);