Changeset 8119363 in mainline for uspace/app/taskdump/fibrildump.c
- Timestamp:
- 2018-06-26T17:35:40Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6e569bf
- Parents:
- fbfe59d (diff), e768aea (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
-
uspace/app/taskdump/fibrildump.c
rfbfe59d r8119363 33 33 */ 34 34 35 #include <adt/list.h> 36 #include <context.h> 35 37 #include <errno.h> 36 38 #include <fibril.h> … … 42 44 #include <taskdump.h> 43 45 #include <udebug.h> 46 47 struct fibril { 48 link_t all_link; 49 context_t ctx; 50 uint8_t __opaque[]; 51 }; 44 52 45 53 static errno_t fibrildump_read_uintptr(void *, uintptr_t, uintptr_t *);
Note:
See TracChangeset
for help on using the changeset viewer.