Changeset 269bc459 in mainline for uspace/lib/c/generic/thread
- Timestamp:
- 2018-11-11T15:47:39Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 45c8eea
- Parents:
- 8a18d5b
- git-author:
- Jakub Jermar <jakub@…> (2018-11-10 17:01:38)
- git-committer:
- Jakub Jermar <jakub@…> (2018-11-11 15:47:39)
- Location:
- uspace/lib/c/generic/thread
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/thread/fibril_synch.c
r8a18d5b r269bc459 54 54 { 55 55 futex_initialize(&m->futex, 1); 56 } 57 58 void fibril_rmutex_destroy(fibril_rmutex_t *m) 59 { 60 futex_destroy(&m->futex); 56 61 } 57 62 -
uspace/lib/c/generic/thread/mpsc.c
r8a18d5b r269bc459 97 97 } 98 98 99 // TODO: fibril_rmutex_destroy()99 fibril_rmutex_destroy(&q->t_lock); 100 100 101 101 free(q);
Note:
See TracChangeset
for help on using the changeset viewer.