Changeset 1642 for trunk/src/emx/include
- Timestamp:
- Nov 16, 2004, 11:18:46 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.13
to1.14
r1641 r1642 32 32 #include <sys/_timeval.h> 33 33 #include <sys/resource.h> 34 #include <sys/time.h> 34 35 #include <sys/wait.h> 35 36 #include <signal.h> … … 498 499 * deliver the signal. 499 500 */ 500 int __libc_Back_signalRaise(int iSignalNo, siginfo_t *pSigInfo, void *pvXcptOrQueued, unsigned fFlags);501 int __libc_Back_signalRaise(int iSignalNo, const siginfo_t *pSigInfo, void *pvXcptOrQueued, unsigned fFlags); 501 502 502 503 /** … … 637 638 */ 638 639 int __libc_Back_signalPending(sigset_t *pSigSet); 640 641 /** 642 * Queries and/or starts/stops a timer. 643 * 644 * @returns 0 on success. 645 * @returns Negative error code (errno.h) on failure. 646 * @param iWhich Which timer to get, any of the ITIMER_* #defines. 647 * OS/2 only supports ITIMER_REAL. 648 * @param pValue Where to store the value. 649 * Optional. If NULL pOldValue must not be NULL. 650 * @param pOldValue Where to store the old value. 651 * Optional. If NULL pValue must not be NULL. 652 */ 653 int __libc_Back_signalTimer(int iWhich, const struct itimerval *pValue, struct itimerval *pOldValue); 654 655 639 656 640 657 /** @} */ -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.