Changeset 105353 in vbox for trunk/src/VBox/NetworkServices
- Timestamp:
- Jul 16, 2024 11:47:19 AM (10 months ago)
- svn:sync-xref-src-repo-rev:
- 164006
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/NetworkServices/NAT/proxy_pollmgr.c
r104603 r105353 93 93 94 94 static int pollmgr_queue_callback(struct pollmgr_handler *, SOCKET, int); 95 static voidpollmgr_chan_call_handler(int, void *);95 static DECLCALLBACK(void) pollmgr_chan_call_handler(int, void *); 96 96 97 97 static void pollmgr_loop(void); … … 275 275 ptr = *(void **)buf; 276 276 277 int rc = RTReqQueueCallEx(pollmgr.queue, NULL, 0, 278 RTREQFLAGS_VOID | RTREQFLAGS_NO_WAIT, 279 (PFNRT)pollmgr_chan_call_handler, 2, 280 slot, ptr); 277 int rc = RTReqQueueCallEx(pollmgr.queue, NULL, 0, RTREQFLAGS_VOID | RTREQFLAGS_NO_WAIT, 278 (PFNRT)pollmgr_chan_call_handler, 2, slot, ptr); 281 279 if (RT_FAILURE(rc)) 282 280 {
Note:
See TracChangeset
for help on using the changeset viewer.