- Timestamp:
- Aug 3, 2021 9:17:59 AM (4 years ago)
- Location:
- trunk/src/VBox/Runtime/r0drv
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/darwin/semevent-r0drv-darwin.cpp
r82968 r90488 426 426 } 427 427 428 429 RTR0DECL(bool) RTSemEventIsSignalSafe(void) 430 { 431 /** @todo check the code... */ 432 return false; 433 } 434 RT_EXPORT_SYMBOL(RTSemEventIsSignalSafe); 435 -
trunk/src/VBox/Runtime/r0drv/darwin/semeventmulti-r0drv-darwin.cpp
r83098 r90488 449 449 } 450 450 451 452 RTR0DECL(bool) RTSemEventMultiIsSignalSafe(void) 453 { 454 /** @todo check the code... */ 455 return false; 456 } 457 -
trunk/src/VBox/Runtime/r0drv/freebsd/semevent-r0drv-freebsd.c
r82968 r90488 279 279 } 280 280 281 282 RTR0DECL(bool) RTSemEventIsSignalSafe(void) 283 { 284 /** @todo check the code... */ 285 return false; 286 } 287 -
trunk/src/VBox/Runtime/r0drv/freebsd/semeventmulti-r0drv-freebsd.c
r82968 r90488 343 343 RT_EXPORT_SYMBOL(RTSemEventMultiGetResolution); 344 344 345 346 RTR0DECL(bool) RTSemEventMultiIsSignalSafe(void) 347 { 348 /** @todo check the code... */ 349 return false; 350 } 351 RT_EXPORT_SYMBOL(RTSemEventMultiIsSignalSafe); 352 -
trunk/src/VBox/Runtime/r0drv/haiku/semevent-r0drv-haiku.c
r82968 r90488 263 263 } 264 264 265 266 RTR0DECL(bool) RTSemEventIsSignalSafe(void) 267 { 268 /** @todo check the code... */ 269 return false; 270 } 271 RT_EXPORT_SYMBOL(RTSemEventIsSignalSafe); 272 -
trunk/src/VBox/Runtime/r0drv/haiku/semeventmulti-r0drv-haiku.c
r82968 r90488 291 291 RT_EXPORT_SYMBOL(RTSemEventMultiGetResolution); 292 292 293 294 RTR0DECL(bool) RTSemEventMultiIsSignalSafe(void) 295 { 296 /** @todo check the code... */ 297 return false; 298 } 299 RT_EXPORT_SYMBOL(RTSemEventMultiIsSignalSafe); 300 -
trunk/src/VBox/Runtime/r0drv/linux/semevent-r0drv-linux.c
r82968 r90488 278 278 RT_EXPORT_SYMBOL(RTSemEventGetResolution); 279 279 280 281 RTR0DECL(bool) RTSemEventIsSignalSafe(void) 282 { 283 return true; 284 } 285 RT_EXPORT_SYMBOL(RTSemEventIsSignalSafe); 286 -
trunk/src/VBox/Runtime/r0drv/linux/semeventmulti-r0drv-linux.c
r82968 r90488 343 343 RT_EXPORT_SYMBOL(RTSemEventMultiGetResolution); 344 344 345 346 RTR0DECL(bool) RTSemEventMultiIsSignalSafe(void) 347 { 348 return true; 349 } 350 RT_EXPORT_SYMBOL(RTSemEventMultiIsSignalSafe); 351 -
trunk/src/VBox/Runtime/r0drv/netbsd/semevent-r0drv-netbsd.c
r82968 r90488 276 276 return 1000000000 / hz; 277 277 } 278 279 RTR0DECL(bool) RTSemEventIsSignalSafe(void) 280 { 281 /** @todo check the code... */ 282 return false; 283 } 284 -
trunk/src/VBox/Runtime/r0drv/netbsd/semeventmulti-r0drv-netbsd.c
r82968 r90488 340 340 } 341 341 RT_EXPORT_SYMBOL(RTSemEventMultiGetResolution); 342 343 344 RTR0DECL(bool) RTSemEventMultiIsSignalSafe(void) 345 { 346 /** @todo check the code... */ 347 return false; 348 } 349 RT_EXPORT_SYMBOL(RTSemEventMultiIsSignalSafe); 350 -
trunk/src/VBox/Runtime/r0drv/nt/semevent-r0drv-nt.cpp
r90459 r90488 276 276 } 277 277 278 279 RTR0DECL(bool) RTSemEventIsSignalSafe(void) 280 { 281 return KeGetCurrentIrql() <= DISPATCH_LEVEL; 282 } 283 -
trunk/src/VBox/Runtime/r0drv/nt/semeventmulti-r0drv-nt.cpp
r82968 r90488 299 299 } 300 300 301 302 RTR0DECL(bool) RTSemEventMultiIsSignalSafe(void) 303 { 304 return KeGetCurrentIrql() <= DISPATCH_LEVEL; 305 } 306 -
trunk/src/VBox/Runtime/r0drv/os2/semevent-r0drv-os2.cpp
r82968 r90488 294 294 } 295 295 296 297 RTR0DECL(bool) RTSemEventIsSignalSafe(void) 298 { 299 return true; 300 } 301 -
trunk/src/VBox/Runtime/r0drv/os2/semeventmulti-r0drv-os2.cpp
r82968 r90488 304 304 } 305 305 306 307 RTR0DECL(bool) RTSemEventMultiIsSignalSafe(void) 308 { 309 return true; 310 } 311 -
trunk/src/VBox/Runtime/r0drv/solaris/semevent-r0drv-solaris.c
r82968 r90488 346 346 } 347 347 348 349 RTR0DECL(bool) RTSemEventIsSignalSafe(void) 350 { 351 /* I don't trust Solaris not to preempt us. */ 352 return false; 353 } 354 -
trunk/src/VBox/Runtime/r0drv/solaris/semeventmulti-r0drv-solaris.c
r82968 r90488 354 354 } 355 355 356 357 RTR0DECL(bool) RTSemEventMultiIsSignalSafe(void) 358 { 359 /* Don't trust solaris not to preempt us. */ 360 return false; 361 } 362
Note:
See TracChangeset
for help on using the changeset viewer.