Changeset 582a0b8 in mainline for uspace/lib/c/generic/rcu.c
- Timestamp:
- 2017-05-08T19:20:39Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d2c8533
- Parents:
- 73db198
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/rcu.c
r73db198 r582a0b8 70 70 #include <fibril.h> 71 71 #include <stdio.h> 72 #include <stddef.h> 72 73 #include <compiler/barrier.h> 73 74 #include <libarch/barrier.h> … … 79 80 #include <assert.h> 80 81 #include <time.h> 82 #include <thread.h> 81 83 82 84 … … 428 430 async_usleep(RCU_SLEEP_MS * 1000); 429 431 } else { 430 usleep(RCU_SLEEP_MS * 1000);432 thread_usleep(RCU_SLEEP_MS * 1000); 431 433 } 432 434
Note:
See TracChangeset
for help on using the changeset viewer.