- Timestamp:
- 2015-08-18T17:52:25Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6a8ce16
- Parents:
- b688fd8
- Location:
- uspace/lib
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/async.h
rb688fd8 rabf2dfd 48 48 #include <abi/ddi/irq.h> 49 49 #include <abi/ipc/event.h> 50 #include <abi/ipc/interfaces.h> 50 51 51 52 typedef ipc_callid_t aid_t; 53 typedef sysarg_t port_id_t; 52 54 53 55 typedef void *(*async_client_data_ctor_t)(void); … … 87 89 * 88 90 */ 89 EXCHANGE_PARALLEL ,91 EXCHANGE_PARALLEL = 1, 90 92 91 93 /** Exchange management via mutual exclusion … … 95 97 * 96 98 */ 97 EXCHANGE_SERIALIZE 99 EXCHANGE_SERIALIZE = 2 98 100 } exch_mgmt_t; 99 101 -
uspace/lib/c/include/ipc/services.h
rb688fd8 rabf2dfd 38 38 #define LIBC_SERVICES_H_ 39 39 40 #include <fourcc.h> 40 #include <sys/types.h> 41 #include <abi/fourcc.h> 41 42 42 43 typedef enum { -
uspace/lib/c/include/sys/types.h
rb688fd8 rabf2dfd 46 46 typedef uint64_t aoff64_t; 47 47 48 typedef uint32_t fourcc_t; 49 48 50 typedef volatile uint8_t ioport8_t; 49 51 typedef volatile uint16_t ioport16_t; -
uspace/lib/draw/codec/webp.c
rb688fd8 rabf2dfd 38 38 #include <align.h> 39 39 #include <stdbool.h> 40 #include <fourcc.h>41 40 #include <pixconv.h> 41 #include <sys/types.h> 42 #include <abi/fourcc.h> 42 43 #include "webp.h" 43 44
Note:
See TracChangeset
for help on using the changeset viewer.