Ignore:
Timestamp:
Jul 6, 2005, 5:49:58 AM (20 years ago)
Author:
bird
Message:

o Added getsid and getpgid, correcting the getpgrp implementation.

File:
1 edited

Legend:

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

    • Property cvs2svn:cvs-rev changed from 1.26 to 1.27
    r2212 r2213  
    854854
    855855/**
     856 * Gets the session id of the current process.
     857 * @returns Session id.
     858 * @returns Negated errno on failure.
     859 * @param   pid     Process to get the process group for.
     860 *                  Use 0 for the current process.
     861 */
     862pid_t __libc_Back_processGetSid(pid_t pid);
     863
     864/**
     865 * Gets the process group of the specfied process.
     866 * @returns Process group.
     867 * @returns Negated errno on failure.
     868 * @param   pid     Process to get the process group for.
     869 *                  Use 0 for the current process.
     870 */
     871pid_t __libc_Back_processGetPGrp(pid_t pid);
     872
     873/**
    856874 * Gets the most favourable priority of a process, group of processes
    857875 * or all processed owned by a user.
Note: See TracChangeset for help on using the changeset viewer.