Changeset 78188e5 in mainline
- Timestamp:
- 2017-05-31T15:53:02Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 525c5ac
- Parents:
- 1165a419
- Location:
- uspace
- Files:
-
- 24 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/usbhub/status.h
r1165a419 r78188e5 35 35 #define HUB_STATUS_H 36 36 37 #include <stdbool.h>38 #include <stdint.h>39 37 #include <usb/dev/request.h> 40 38 -
uspace/lib/c/generic/devman.c
r1165a419 r78188e5 45 45 #include <errno.h> 46 46 #include <malloc.h> 47 #include <stdbool.h>48 47 49 48 static FIBRIL_MUTEX_INITIALIZE(devman_driver_block_mutex); -
uspace/lib/c/include/adt/hash.h
r1165a419 r78188e5 36 36 37 37 #include <stdint.h> 38 #include <sys/types.h> 38 39 39 40 /** Produces a uniform hash affecting all output bits from the skewed input. */ -
uspace/lib/c/include/atomicdflt.h
r1165a419 r78188e5 40 40 #endif 41 41 42 #include < stdint.h>42 #include <libarch/types.h> 43 43 #include <stdbool.h> 44 44 -
uspace/lib/c/include/fibril.h
r1165a419 r78188e5 37 37 38 38 #include <libarch/fibril.h> 39 #include <libarch/types.h> 39 40 #include <adt/list.h> 40 41 #include <libarch/tls.h> -
uspace/lib/c/include/inet/dhcp.h
r1165a419 r78188e5 36 36 #define LIBC_INET_DHCP_H_ 37 37 38 #include <libarch/types.h> 38 39 39 40 extern int dhcp_init(void); -
uspace/lib/c/include/io/chargrid.h
r1165a419 r78188e5 37 37 #define LIBC_IO_CHARGRID_H_ 38 38 39 #include <io/charfield.h> 40 #include <libarch/types.h> 39 41 #include <stddef.h> 40 #include <io/charfield.h>41 42 42 43 typedef enum { -
uspace/lib/c/include/io/pixelmap.h
r1165a419 r78188e5 38 38 #define LIBC_IO_PIXELMAP_H_ 39 39 40 #include <libarch/types.h> 41 #include <stdbool.h> 40 42 #include <stddef.h> 41 43 #include <io/pixel.h> -
uspace/lib/c/include/io/pos_event.h
r1165a419 r78188e5 37 37 #define LIBC_IO_POS_EVENT_H_ 38 38 39 #include <libarch/types.h> 39 40 40 41 typedef enum { -
uspace/lib/c/include/stdbool.h
r1165a419 r78188e5 36 36 #define LIBC_BOOL_H_ 37 37 38 #include <libarch/types.h>39 38 #include <abi/bool.h> 40 39 -
uspace/lib/c/include/sysinfo.h
r1165a419 r78188e5 36 36 #define LIBC_SYSINFO_H_ 37 37 38 #include <libarch/types.h> 38 39 #include <stddef.h> 39 40 #include <stdbool.h> -
uspace/lib/draw/path.c
r1165a419 r78188e5 35 35 36 36 #include <assert.h> 37 #include <stdbool.h>38 37 #include <malloc.h> 39 38 -
uspace/lib/gui/window.c
r1165a419 r78188e5 677 677 } 678 678 679 int window_set_caption(window_t *win, const char *caption) 680 { 681 char *cap; 682 683 if (caption == NULL) { 684 win->caption = NULL; 685 } else { 686 cap = str_dup(caption); 687 if (cap == NULL) 688 return ENOMEM; 689 free(win->caption); 690 win->caption = cap; 691 } 692 693 win->is_focused = false; 694 handle_refresh(win); 695 696 return EOK; 697 } 698 699 679 700 void window_refresh(window_t *win) 680 701 { -
uspace/lib/gui/window.h
r1165a419 r78188e5 77 77 window_placement_flags_t); 78 78 79 /** Change window caption. */ 80 extern int window_set_caption(window_t *, const char *); 81 79 82 /** 80 83 * Post refresh event into event loop. Widget tree is traversed and all widgets -
uspace/lib/hound/include/hound/client.h
r1165a419 r78188e5 38 38 39 39 #include <async.h> 40 #include <stdbool.h>41 40 #include <pcm/format.h> 42 41 #include <hound/protocol.h> -
uspace/lib/http/include/http/receive-buffer.h
r1165a419 r78188e5 38 38 39 39 #include <adt/list.h> 40 #include <sys/types.h> 40 41 41 42 /** Receive data. -
uspace/lib/nic/src/nic_rx_control.c
r1165a419 r78188e5 38 38 #include <assert.h> 39 39 #include <stdlib.h> 40 #include <stdbool.h>41 40 #include <errno.h> 42 41 #include <mem.h> -
uspace/lib/posix/source/stdio.c
r1165a419 r78188e5 49 49 #include "libc/stdio.h" 50 50 #include "libc/io/printf_core.h" 51 #include "libc/stdbool.h"52 51 #include "libc/str.h" 53 52 #include "libc/malloc.h" -
uspace/lib/posix/source/time.c
r1165a419 r78188e5 49 49 #include "libc/task.h" 50 50 #include "libc/stats.h" 51 #include "libc/stdbool.h"52 51 #include "libc/stddef.h" 53 52 #include "libc/sys/time.h" -
uspace/lib/softrend/filter.h
r1165a419 r78188e5 37 37 #define SOFTREND_FILTER_H_ 38 38 39 #include <stdbool.h>40 39 #include <io/pixelmap.h> 41 40 -
uspace/lib/softrend/rectangle.h
r1165a419 r78188e5 38 38 39 39 #include <stdbool.h> 40 #include <sys/types.h> 40 41 41 42 extern bool rectangle_intersect( -
uspace/lib/usb/include/usb/usb.h
r1165a419 r78188e5 35 35 #define LIBUSB_USB_H_ 36 36 37 #include <byteorder.h> 37 38 #include <stdbool.h> 38 39 #include <stdint.h> 39 #include < byteorder.h>40 #include <sys/types.h> 40 41 41 42 /** Convert 16bit value from native (host) endianness to USB endianness. */ -
uspace/lib/usbhost/include/usb/host/usb_transfer_batch.h
r1165a419 r78188e5 41 41 42 42 #include <assert.h> 43 #include <stdbool.h>44 43 #include <stddef.h> 45 44 #include <stdint.h> -
uspace/srv/fs/exfat/exfat_dentry.h
r1165a419 r78188e5 34 34 #define EXFAT_EXFAT_DENTRY_H_ 35 35 36 #include <stddef.h> 36 37 #include <stdint.h> 37 38 #include <stdbool.h>
Note:
See TracChangeset
for help on using the changeset viewer.