diff options
author | Michael I. Bushnell <mib@gnu.org> | 1991-11-02 03:21:29 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1991-11-02 03:21:29 +0000 |
commit | 905472b31113d5015cb80c0f7625d9ec84328368 (patch) | |
tree | 8c36f22abb41aab5a51a1f3149e258b100534c6e /hurd | |
parent | 54adbae12c7f23084a9e9c9986c233cac49432c3 (diff) |
Formerly core.defs.~3~
Diffstat (limited to 'hurd')
-rw-r--r-- | hurd/=core.defs | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/hurd/=core.defs b/hurd/=core.defs index 034d577b..125259f9 100644 --- a/hurd/=core.defs +++ b/hurd/=core.defs @@ -24,13 +24,17 @@ subsystem core 32000; #include <hurd/hurd_types.defs> /* 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. LIMIT is the resource limit on the size of core files. - If the core file would be bigger than this, it is not written. */ + If the core file would be bigger than this, it is not written. + MODE gives the permissions for the core file. */ routine core_dump_task ( coreserver: mach_port_t; task: task_t; + host: host_t; coredir: file_t; signo: int; - limit: int); + limit: int; + mode: int); |