Changeset 972c60ce in mainline
- Timestamp:
- 2011-12-12T17:15:05Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bf84871
- Parents:
- cf155ed
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia64/src/start.S
rcf155ed r972c60ce 174 174 mov ar.bspstore = r8 175 175 loadrs 176 176 177 177 # 178 178 # Initialize memory stack to some sane value and allocate a scratch area … … 196 196 srlz.i 197 197 srlz.d ;; 198 198 199 199 br.call.sptk.many b0 = arch_pre_main 200 200 0: -
uspace/lib/c/generic/async.c
rcf155ed r972c60ce 1846 1846 1847 1847 fibril_mutex_lock(&async_sess_mutex); 1848 1848 1849 1849 int rc = async_hangup_internal(sess->phone); 1850 1850 -
uspace/lib/c/include/bitops.h
rcf155ed r972c60ce 40 40 /** Mask with bit @a n set. */ 41 41 #define BIT_V(type, n) \ 42 ((type) 1 << (n))42 ((type) 1 << (n)) 43 43 44 44 /** Mask with rightmost @a n bits set. */ -
uspace/lib/c/include/ipc/net.h
rcf155ed r972c60ce 305 305 * 306 306 */ 307 #define IPC_GET_DEVICE_HANDLE(call) ((devman_handle_t) IPC_GET_ARG2(call))307 #define IPC_GET_DEVICE_HANDLE(call) ((devman_handle_t) IPC_GET_ARG2(call)) 308 308 309 309 /** Return the device driver service message argument. -
uspace/lib/usbhost/Makefile
rcf155ed r972c60ce 32 32 -I$(LIBUSB_PREFIX)/include \ 33 33 -I$(LIBDRV_PREFIX)/include \ 34 -Iinclude 34 -Iinclude 35 35 36 36 SOURCES = \
Note:
See TracChangeset
for help on using the changeset viewer.