Changeset 7206 in vbox for trunk/src/VBox/HostDrivers/Support/os2
- Timestamp:
- Feb 28, 2008 4:42:10 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 28517
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/os2/SUPDrv-os2.cpp
r4935 r7206 377 377 } 378 378 379 /** 380 * Executes a callback handler on a specific cpu or all cpus 381 * 382 * @returns IPRT status code. 383 * @param pSession The session. 384 * @param pfnCallback Callback handler 385 * @param pvUser The first user argument. 386 * @param uCpu Cpu id or SUPDRVEXECCALLBACK_CPU_ALL for all cpus 387 */ 388 int VBOXCALL supdrvOSExecuteCallback(PSUPDRVSESSION pSession, PFNSUPDRVEXECCALLBACK pfnCallback, void *pvUser, unsigned uCpu) 389 { 390 NOREF(pSession); 391 NOREF(pfnCallback); 392 NOREF(pvUser); 393 NOREF(uCpu); 394 /** @todo */ 395 return VERR_NOT_IMPLEMENTED; 396 } 379 397 380 398 /**
Note:
See TracChangeset
for help on using the changeset viewer.