Changeset 47206 in vbox for trunk/include/iprt
- Timestamp:
- Jul 17, 2013 10:17:13 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/thread.h
r47199 r47206 4 4 5 5 /* 6 * Copyright (C) 2006-201 2Oracle Corporation6 * Copyright (C) 2006-2013 Oracle Corporation 7 7 * 8 8 * This file is part of VirtualBox Open Source Edition (OSE), as … … 616 616 * @returns IPRT status code. 617 617 * @param phThreadCtx Where to store the thread-context handle. 618 * 619 * @remarks Must be called with preemption enabled! 618 620 */ 619 621 RTDECL(int) RTThreadCtxHooksCreate(PRTTHREADCTX phThreadCtx); … … 626 628 * 627 629 * @param phThreadCtx Pointer to the thread-context handle. 630 * 631 * @remarks Must be called with preemption enabled! 628 632 */ 629 633 RTDECL(void) RTThreadCtxHooksDestroy(RTTHREADCTX hThreadCtx); … … 638 642 * for all thread-context events. 639 643 * @param pvUser User argument (optional, can be NULL). 644 * 645 * @remarks Can be called with preemption disabled. 640 646 */ 641 647 RTDECL(int) RTThreadCtxHooksRegister(RTTHREADCTX hThreadCtx, PFNRTTHREADCTXHOOK pfnThreadHook, void *pvUser); … … 646 652 * @returns IPRT status code. 647 653 * @param phThreadCtx Pointer to the thread-context handle. 654 * 655 * @remarks Can be called with preemption disabled. 648 656 */ 649 657 RTDECL(int) RTThreadCtxHooksDeregister(RTTHREADCTX hThreadCtx);
Note:
See TracChangeset
for help on using the changeset viewer.