Changeset 09ab0a9a in mainline for uspace/lib/c/include
- Timestamp:
- 2018-09-13T12:05:53Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cc74cb5
- Parents:
- b2aaaa0
- git-author:
- Jiri Svoboda <jiri@…> (2018-09-13 07:09:46)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-09-13 12:05:53)
- Location:
- uspace/lib/c/include
- Files:
-
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/align.h
rb2aaaa0 r09ab0a9a 43 43 #define ALIGN_DOWN(s, a) ((s) & ~((a) - 1)) 44 44 45 46 45 /** Align to the nearest higher address which is a power of two. 47 46 * -
uspace/lib/c/include/context.h
rb2aaaa0 r09ab0a9a 47 47 48 48 #endif 49 -
uspace/lib/c/include/device/clock_dev.h
rb2aaaa0 r09ab0a9a 48 48 49 49 #endif 50 -
uspace/lib/c/include/device/hw_res_parsed.h
rb2aaaa0 r09ab0a9a 45 45 /** Keep duplicit entries */ 46 46 #define HW_RES_KEEP_DUPLICIT 0x2 47 48 47 49 48 #define RNGABS(rng) (rng).address.absolute -
uspace/lib/c/include/fenv.h
rb2aaaa0 r09ab0a9a 40 40 41 41 #endif 42 -
uspace/lib/c/include/float.h
rb2aaaa0 r09ab0a9a 42 42 43 43 #endif 44 -
uspace/lib/c/include/inet/tcp.h
rb2aaaa0 r09ab0a9a 118 118 extern errno_t tcp_conn_recv_wait(tcp_conn_t *, void *, size_t, size_t *); 119 119 120 121 120 #endif 122 121 -
uspace/lib/c/include/io/label.h
rb2aaaa0 r09ab0a9a 41 41 extern int label_pkind_format(label_pkind_t, char **); 42 42 43 44 43 #endif 45 44 -
uspace/lib/c/include/io/pixelmap.h
rb2aaaa0 r09ab0a9a 146 146 } 147 147 148 149 148 #endif 150 149 -
uspace/lib/c/include/ipc/dev_iface.h
rb2aaaa0 r09ab0a9a 96 96 #define DEV_IPC_GET_ARG4(call) IPC_GET_ARG5((call)) 97 97 98 99 98 #endif -
uspace/lib/c/include/ipc/vfs.h
rb2aaaa0 r09ab0a9a 145 145 #define L_MP 8 146 146 147 148 147 /** 149 148 * When used with L_CREATE, L_EXCLUSIVE will cause the lookup to fail if the -
uspace/lib/c/include/math.h
rb2aaaa0 r09ab0a9a 132 132 133 133 #endif /* defined(__GNUC__) || defined(__clang__) */ 134 135 134 136 135 #define MATH_ERRNO 1 … … 324 323 325 324 #endif /* _MATH_H */ 326 -
uspace/lib/c/include/refcount.h
rb2aaaa0 r09ab0a9a 112 112 113 113 #endif 114 -
uspace/lib/c/include/stdlib.h
rb2aaaa0 r09ab0a9a 70 70 } lldiv_t; 71 71 72 73 72 #define EXIT_FAILURE 1 74 73 #define EXIT_SUCCESS 0 -
uspace/lib/c/include/time.h
rb2aaaa0 r09ab0a9a 40 40 #endif 41 41 42 43 42 /* ISO/IEC 9899:2011 7.27.1 (2) */ 44 43 … … 48 47 49 48 #define TIME_UTC 1 50 51 49 52 50 /* ISO/IEC 9899:2011 7.27.1 (3) */ … … 110 108 const struct tm *__restrict__); 111 109 112 113 110 #ifdef _HELENOS_SOURCE 114 111 -
uspace/lib/c/include/tls.h
rb2aaaa0 r09ab0a9a 51 51 } 52 52 53 54 53 static inline tcb_t *__tcb_get(void) 55 54 { -
uspace/lib/c/include/vfs/vfs.h
rb2aaaa0 r09ab0a9a 55 55 KIND_DIRECTORY, 56 56 } vfs_file_kind_t; 57 58 57 59 58 typedef struct {
Note:
See TracChangeset
for help on using the changeset viewer.