Changeset 88cbc66 in mainline for uspace/lib/c/generic/private/fibril.h
- Timestamp:
- 2025-03-08T16:41:12Z (29 hours ago)
- Parents:
- 797ab95 (diff), af28af6 (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. - git-author:
- Matěj Volf <mat.volfik@…> (2025-03-08 16:41:12)
- git-committer:
- GitHub <noreply@…> (2025-03-08 16:41:12)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/private/fibril.h
r797ab95 r88cbc66 70 70 fibril_owner_info_t *waits_for; 71 71 fibril_event_t *sleep_event; 72 73 list_t exit_hooks; 72 74 }; 75 76 typedef struct { 77 link_t link; 78 void (*func)(void); 79 } fibril_hook_t; 73 80 74 81 extern fibril_t *fibril_alloc(void); … … 86 93 extern errno_t fibril_ipc_wait(ipc_call_t *, const struct timespec *); 87 94 extern void fibril_ipc_poke(void); 95 96 extern void fibril_run_exit_hooks(fibril_t *); 88 97 89 98 /**
Note:
See TracChangeset
for help on using the changeset viewer.