Changeset 498ced1 in mainline for uspace/srv/volsrv/types
- Timestamp:
- 2018-08-11T02:43:32Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 05882233
- Parents:
- b13d80b
- git-author:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-08-11 02:29:02)
- git-committer:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-08-11 02:43:32)
- Location:
- uspace/srv/volsrv/types
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/volsrv/types/part.h
rb13d80b r498ced1 39 39 40 40 #include <adt/list.h> 41 #include < atomic.h>41 #include <refcount.h> 42 42 #include <fibril_synch.h> 43 43 #include <stdbool.h> … … 51 51 link_t lparts; 52 52 /** Reference count */ 53 atomic_ t refcnt;53 atomic_refcount_t refcnt; 54 54 /** Service ID */ 55 55 service_id_t svc_id; -
uspace/srv/volsrv/types/volume.h
rb13d80b r498ced1 39 39 40 40 #include <adt/list.h> 41 #include < atomic.h>41 #include <refcount.h> 42 42 #include <fibril_synch.h> 43 43 #include <sif.h> … … 50 50 link_t lvolumes; 51 51 /** Reference count */ 52 atomic_ t refcnt;52 atomic_refcount_t refcnt; 53 53 /** Volume label */ 54 54 char *label;
Note:
See TracChangeset
for help on using the changeset viewer.
