Changeset 1627 for trunk/src/emx/include/InnoTekLIBC/backend.h
- Timestamp:
- Nov 8, 2004, 10:57:37 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/InnoTekLIBC/backend.h
-
Property cvs2svn:cvs-rev
changed from
1.11
to1.12
r1626 r1627 30 30 #include <sys/cdefs.h> 31 31 #include <sys/types.h> 32 #include <sys/_timeval.h> 33 #include <sys/resource.h> 34 #include <sys/wait.h> 32 35 #include <signal.h> 33 36 #include <emx/io.h> … … 657 660 /** @} */ 658 661 662 663 664 /** @defgroup grp_Back_process LIBC Backend - Process Management 665 * @{ */ 666 667 /** 668 * Waits/polls for on one or more processes to change it's running status. 669 * 670 * @returns 0 on success, pSigInfo containing status info. 671 * @returns -1 and errno on failure. 672 * @param enmIdType What kind of process specification Id contains. 673 * @param Id Process specification of the enmIdType sort. 674 * @param pSigInfo Where to store the result. 675 * @param fOptions The WEXITED, WUNTRACED, WSTOPPED and WCONTINUED flags are used to 676 * select the events to report. WNOHANG is used for preventing the api 677 * from blocking. And WNOWAIT is used for peeking. 678 * @param pResUsage Where to store the reported resources usage for the child. 679 * Optional and not implemented on OS/2. 680 */ 681 int __libc_Back_processWait(idtype_t enmIdType, id_t Id, siginfo_t *pSigInfo, unsigned fOptions, struct rusage *pUsage); 682 683 /** @} */ 684 659 685 __END_DECLS 660 686 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.