Ignore:
Timestamp:
Nov 8, 2004, 10:57:37 AM (21 years ago)
Author:
bird
Message:

Having a go at waitid (and waitpid()/wait()).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/include/InnoTekLIBC/sharedpm.h

    • Property cvs2svn:cvs-rev changed from 1.14 to 1.15
    r1626 r1627  
    550550
    551551/**
     552 * Gets the exit code and reason of death for a specific child process
     553 * which is believed to have died.
     554 *
     555 * @returns 0 on success.
     556 * @returns Negative error code (errno.h) on failure.
     557 * @param   pid                 Process id.
     558 * @param   pendDeathReason     Where to store the death reason.
     559 * @param   piExitCode          Where to store the exit code.
     560 */
     561int __libc_spmReapChild(pid_t pid, __LIBC_EXIT_REASON *penmDeathReason, int *piExitCode);
     562
     563/**
    552564 * Locks the LIBC shared memory for short exclusive access.
    553565 * The call must call __libc_spmUnlock() as fast as possible and make
Note: See TracChangeset for help on using the changeset viewer.