Changeset e90cfa6 in mainline
- Timestamp:
- 2018-09-07T16:20:49Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fc10e1b
- Parents:
- c53e813
- Location:
- kernel
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/console/console.c
rc53e813 re90cfa6 53 53 #include <errno.h> 54 54 #include <str.h> 55 #include <stdatomic.h> 55 56 #include <abi/kio.h> 56 57 #include <mm/frame.h> /* SIZE2FRAMES */ … … 64 65 65 66 /** Kernel log initialized */ 66 static atomic_ t kio_inited = { false };67 static atomic_bool kio_inited = false; 67 68 68 69 /** First kernel log characters */ -
kernel/generic/src/lib/halt.c
rc53e813 re90cfa6 44 44 45 45 /** Halt flag */ 46 atomic_t haltstate = { 0 };46 atomic_t haltstate = 0; 47 47 48 48 /** Halt wrapper -
kernel/generic/src/log/log.c
rc53e813 re90cfa6 63 63 64 64 /** Kernel log initialized */ 65 static atomic_ t log_inited = { false };65 static atomic_bool log_inited = false; 66 66 67 67 /** Position in the cyclic buffer where the first log entry starts */ -
kernel/test/synch/rcu1.c
rc53e813 re90cfa6 238 238 239 239 240 static atomic_t nop_callbacks_cnt = { 0 };240 static atomic_t nop_callbacks_cnt = 0; 241 241 /* Must be even. */ 242 242 static const int nop_updater_iters = 10000; … … 367 367 static errno_t seq_test_result = EOK; 368 368 369 static atomic_t cur_time = { 1 };369 static atomic_t cur_time = 1; 370 370 static size_t max_upd_done_time = { 0 }; 371 371
Note:
See TracChangeset
for help on using the changeset viewer.