Changeset 88813 in vbox for trunk/src/VBox/Runtime/include
- Timestamp:
- May 1, 2021 6:15:13 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/req.h
r82968 r88813 49 49 /** The request is begin processed. */ 50 50 RTREQSTATE_PROCESSING, 51 /** The request has been cancelled. */ 52 RTREQSTATE_CANCELLED, 51 53 /** The request is completed, the requester is begin notified. */ 52 54 RTREQSTATE_COMPLETED, 53 /** The request packet is in the free chain. (The requester*/55 /** The request packet is in the free chain. */ 54 56 RTREQSTATE_FREE 55 57 } RTREQSTATE; 58 AssertCompileSize(RTREQSTATE, sizeof(uint32_t)); 56 59 57 60 … … 114 117 uint32_t cArgs; 115 118 /** Array of arguments. */ 116 uintptr_t aArgs[ 64];119 uintptr_t aArgs[12]; 117 120 } Internal; 118 121 } u; … … 165 168 DECLHIDDEN(void) rtReqQueueSubmit(PRTREQQUEUEINT pQueue, PRTREQINT pReq); 166 169 DECLHIDDEN(void) rtReqPoolSubmit(PRTREQPOOLINT pPool, PRTREQINT pReq); 170 DECLHIDDEN(void) rtReqPoolCancel(PRTREQPOOLINT pPool, PRTREQINT pReq); 167 171 DECLHIDDEN(bool) rtReqQueueRecycle(PRTREQQUEUEINT pQueue, PRTREQINT pReq); 168 172 DECLHIDDEN(bool) rtReqPoolRecycle(PRTREQPOOLINT pPool, PRTREQINT pReq);
Note:
See TracChangeset
for help on using the changeset viewer.