Changeset 2254 for trunk/src/emx/include/InnoTekLIBC/thread.h
- Timestamp:
- Jul 17, 2005, 2:25:44 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/InnoTekLIBC/thread.h
-
Property cvs2svn:cvs-rev
changed from
1.13
to1.14
r2253 r2254 502 502 * @returns 0 on success. 503 503 * @returns -1 on failure. errno set. 504 * @param i TLSIndexValue returned by __libc_TLSAlloc().504 * @param iIndex Value returned by __libc_TLSAlloc(). 505 505 */ 506 506 int __libc_TLSFree(int iIndex); … … 511 511 * @returns value in given TLS entry. 512 512 * @returns NULL on failure with errno set. 513 * @param i TLSIndexValue returned by __libc_TLSAlloc().513 * @param iIndex Value returned by __libc_TLSAlloc(). 514 514 */ 515 515 void * __libc_TLSGet(int iIndex); … … 520 520 * @returns 0 on success. 521 521 * @returns -1 on failure. errno set. 522 * @param i TLSIndexValue returned by __libc_TLSAlloc().522 * @param iIndex Value returned by __libc_TLSAlloc(). 523 523 * @param pvValue Value to store. 524 524 */ … … 529 529 * 530 530 * The destructor function will be called when a thread terminates 531 * in a normal fashion and the TLS entry i TLSIndex of that thread is531 * in a normal fashion and the TLS entry iIndex of that thread is 532 532 * not NULL. 533 533 * … … 536 536 * @returns 0 on succces. 537 537 * @returns -1 on failure. errno set. 538 * @param i TLSIndexValue returned by __libc_TLSAlloc().538 * @param iIndex Value returned by __libc_TLSAlloc(). 539 539 * @param pfnDestructor Callback function. Use NULL to unregister a previously 540 540 * registered destructor. … … 552 552 * this function. The result from doing that is undefined. 553 553 */ 554 int __libc_TLSDestructor(int iIndex, void (*pfnDestructor)(void *pvValue, int i TLSIndex, unsigned fFlags), unsigned fFlags);554 int __libc_TLSDestructor(int iIndex, void (*pfnDestructor)(void *pvValue, int iIndex, unsigned fFlags), unsigned fFlags); 555 555 556 556 … … 562 562 * @returns Pointer to destructor if registered. 563 563 * 564 * @param i TLSIndexValue returned by __libc_TLSAlloc().564 * @param iIndex Value returned by __libc_TLSAlloc(). 565 565 * @param pfFlags Where to store the flags supplied to __libc_TLSDestructor(). 566 566 * NULL is ok. 567 567 */ 568 void (*__libc_TLSGetDestructor(int i TLSIndex, unsigned *pfFlags))(void *, int, unsigned);568 void (*__libc_TLSGetDestructor(int iIndex, unsigned *pfFlags))(void *, int, unsigned); 569 569 570 570 /* fix later */ -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.