Changeset 91b60499 in mainline for kernel/generic/include/proc/task.h
- Timestamp:
- 2017-09-30T06:29:42Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 300f4c4
- Parents:
- d076f16 (diff), 6636fb19 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/proc/task.h
rd076f16 r91b60499 60 60 #include <abi/sysinfo.h> 61 61 #include <arch.h> 62 #include <cap/cap.h> 62 63 63 64 #define TASK THE->task … … 65 66 66 67 struct thread; 68 struct cap; 67 69 68 70 /** Task structure. */ … … 95 97 /** Task permissions. */ 96 98 perm_t perms; 99 100 /** Capabilities */ 101 cap_info_t *cap_info; 97 102 98 103 /* IPC stuff */ … … 100 105 /** Receiving communication endpoint */ 101 106 answerbox_t answerbox; 102 103 /** Sending communication endpoints */104 phone_t phones[IPC_MAX_PHONES];105 107 106 108 /** Spinlock protecting the active_calls list. */
Note:
See TracChangeset
for help on using the changeset viewer.