Changeset b59318e in mainline for kernel/generic/include/proc/thread.h
- Timestamp:
- 2018-06-26T17:34:48Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ab6edb6
- Parents:
- f6372be9
- git-author:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-06-26 17:01:43)
- git-committer:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-06-26 17:34:48)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/proc/thread.h
rf6372be9 rb59318e 112 112 /** If true, the thread can be interrupted from sleep. */ 113 113 bool sleep_interruptible; 114 115 /** 116 * If true, and this thread's sleep returns without a wakeup 117 * (timed out or interrupted), waitq ignores the next wakeup. 118 * This is necessary for futex to be able to handle those conditions. 119 */ 120 bool sleep_composable; 121 114 122 /** Wait queue in which this thread sleeps. */ 115 123 waitq_t *sleep_queue;
Note:
See TracChangeset
for help on using the changeset viewer.