Changeset 7c5320c in mainline for kernel/generic/include/console/chardev.h
- Timestamp:
- 2023-02-07T16:03:05Z (2 years ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1eaead4
- Parents:
- 5110d0a
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2023-02-07 15:59:26)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2023-02-07 16:03:05)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/console/chardev.h
r5110d0a r7c5320c 39 39 #include <stdbool.h> 40 40 #include <stddef.h> 41 #include <synch/ waitq.h>41 #include <synch/semaphore.h> 42 42 #include <synch/spinlock.h> 43 43 … … 64 64 typedef struct indev { 65 65 const char *name; 66 waitq_t wq;66 semaphore_t wq; 67 67 68 68 /** Protects everything below. */
Note:
See TracChangeset
for help on using the changeset viewer.