Changeset 514d561 in mainline for uspace/lib/c/generic/thread.c
- Timestamp:
- 2018-07-20T16:27:20Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 05208d9
- Parents:
- 7137f74c
- git-author:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-07-19 21:52:47)
- git-committer:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-07-20 16:27:20)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/thread.c
r7137f74c r514d561 73 73 */ 74 74 75 /* If there is a manager, destroy it */ 76 async_destroy_manager(); 77 78 fibril_teardown(fibril, false); 79 75 fibril_teardown(fibril); 80 76 thread_exit(0); 81 77 } … … 111 107 AS_AREA_LATE_RESERVE, AS_AREA_UNPAGED); 112 108 if (stack == AS_MAP_FAILED) { 113 fibril_teardown(fibril , false);109 fibril_teardown(fibril); 114 110 free(uarg); 115 111 return ENOMEM;
Note:
See TracChangeset
for help on using the changeset viewer.