Changeset 8d2dd7f2 in mainline for uspace/srv
- Timestamp:
- 2017-05-13T19:03:14Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9c96634
- Parents:
- e48947e
- Location:
- uspace/srv
- Files:
-
- 71 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/bd/file_bd/file_bd.c
re48947e r8d2dd7f2 45 45 #include <fibril_synch.h> 46 46 #include <loc.h> 47 #include <sys/types.h> 47 #include <stddef.h> 48 #include <stdint.h> 48 49 #include <sys/typefmt.h> 49 50 #include <errno.h> -
uspace/srv/bd/sata_bd/sata_bd.c
re48947e r8d2dd7f2 37 37 */ 38 38 39 #include <s ys/types.h>39 #include <stddef.h> 40 40 #include <bd_srv.h> 41 41 #include <devman.h> -
uspace/srv/bd/sata_bd/sata_bd.h
re48947e r8d2dd7f2 41 41 #include <bd_srv.h> 42 42 #include <loc.h> 43 #include <sys/types.h> 43 #include <stddef.h> 44 #include <stdint.h> 44 45 45 46 /** SATA Block Device. */ -
uspace/srv/bd/vbd/types/vbd.h
re48947e r8d2dd7f2 44 44 #include <loc.h> 45 45 #include <stdbool.h> 46 #include <s ys/types.h>46 #include <stddef.h> 47 47 #include <types/label.h> 48 48 -
uspace/srv/devman/match.c
re48947e r8d2dd7f2 35 35 #include <str.h> 36 36 #include <str_error.h> 37 #include <s ys/types.h>37 #include <stddef.h> 38 38 #include <vfs/vfs.h> 39 39 -
uspace/srv/fs/cdfs/cdfs_endian.h
re48947e r8d2dd7f2 34 34 #define CDFS_CDFS_ENDIAN_H_ 35 35 36 #include <s ys/types.h>36 #include <stdint.h> 37 37 38 38 #if !(defined(__BE__) ^ defined(__LE__)) -
uspace/srv/fs/exfat/exfat.h
re48947e r8d2dd7f2 39 39 #include <libfs.h> 40 40 #include <atomic.h> 41 #include <s ys/types.h>41 #include <stdint.h> 42 42 #include <stdbool.h> 43 43 #include "../../vfs/vfs.h" -
uspace/srv/fs/fat/fat.h
re48947e r8d2dd7f2 39 39 #include <libfs.h> 40 40 #include <atomic.h> 41 #include <s ys/types.h>41 #include <stdint.h> 42 42 #include <stdbool.h> 43 43 #include <macros.h> -
uspace/srv/fs/fat/fat_dentry.c
re48947e r8d2dd7f2 44 44 #include <assert.h> 45 45 #include <stddef.h> 46 #include <s ys/types.h>46 #include <stdint.h> 47 47 48 48 /** Compare path component with the name read from the dentry. -
uspace/srv/fs/tmpfs/tmpfs.h
re48947e r8d2dd7f2 36 36 #include <libfs.h> 37 37 #include <atomic.h> 38 #include <s ys/types.h>38 #include <stddef.h> 39 39 #include <stdbool.h> 40 40 #include <adt/hash_table.h> -
uspace/srv/fs/tmpfs/tmpfs_dump.c
re48947e r8d2dd7f2 42 42 #include <stdlib.h> 43 43 #include <str.h> 44 #include <sys/types.h> 44 #include <stddef.h> 45 #include <stdint.h> 45 46 #include <as.h> 46 47 #include <block.h> -
uspace/srv/fs/tmpfs/tmpfs_ops.c
re48947e r8d2dd7f2 48 48 #include <stdio.h> 49 49 #include <assert.h> 50 #include <s ys/types.h>50 #include <stddef.h> 51 51 #include <adt/hash_table.h> 52 52 #include <adt/hash.h> -
uspace/srv/fs/udf/udf.h
re48947e r8d2dd7f2 38 38 #include <libfs.h> 39 39 #include <atomic.h> 40 #include <sys/types.h> 40 #include <stddef.h> 41 #include <stdint.h> 41 42 #include <stdbool.h> 42 43 #include "../../vfs/vfs.h" -
uspace/srv/fs/udf/udf_cksum.h
re48947e r8d2dd7f2 34 34 #define UDF_CKSUM_H_ 35 35 36 #include <sys/types.h> 36 #include <stddef.h> 37 #include <stdint.h> 37 38 #include <stdbool.h> 38 39 -
uspace/srv/fs/udf/udf_file.h
re48947e r8d2dd7f2 34 34 #define UDF_FILE_H_ 35 35 36 #include <sys/types.h> 36 #include <stddef.h> 37 #include <stdint.h> 37 38 #include <ipc/loc.h> 38 39 #include <block.h> -
uspace/srv/fs/udf/udf_osta.h
re48947e r8d2dd7f2 40 40 #define UDF_OSTA_H_ 41 41 42 #include <sys/types.h> 42 #include <stddef.h> 43 #include <stdint.h> 43 44 #include <stdbool.h> 44 45 #include "udf_types.h" -
uspace/srv/fs/udf/udf_types.h
re48947e r8d2dd7f2 38 38 #define UDF_UDF_TYPES_H_ 39 39 40 #include <s ys/types.h>40 #include <stdint.h> 41 41 #include <stdbool.h> 42 42 #include <byteorder.h> -
uspace/srv/fs/udf/udf_volume.h
re48947e r8d2dd7f2 34 34 #define UDF_UDF_VOLUME_H_ 35 35 36 #include <s ys/types.h>36 #include <stdint.h> 37 37 #include <ipc/loc.h> 38 38 #include "udf_types.h" -
uspace/srv/hid/compositor/compositor.c
re48947e r8d2dd7f2 33 33 */ 34 34 35 #include <sys/types.h> 35 #include <stddef.h> 36 #include <stdint.h> 36 37 #include <stdbool.h> 37 38 #include <errno.h> -
uspace/srv/hid/input/kbd_port.h
re48947e r8d2dd7f2 38 38 #define KBD_PORT_H_ 39 39 40 #include <s ys/types.h>40 #include <stdint.h> 41 41 42 42 struct kbd_dev; -
uspace/srv/hid/input/layout.h
re48947e r8d2dd7f2 38 38 #define KBD_LAYOUT_H_ 39 39 40 #include <sys/types.h>41 40 #include <io/console.h> 42 41 -
uspace/srv/hid/input/mouse_port.h
re48947e r8d2dd7f2 38 38 #define MOUSE_PORT_H_ 39 39 40 #include <s ys/types.h>40 #include <stdint.h> 41 41 42 42 struct mouse_dev; -
uspace/srv/hid/input/port/ski.c
re48947e r8d2dd7f2 37 37 38 38 #include <stdlib.h> 39 #include <s ys/types.h>39 #include <stdint.h> 40 40 #include <thread.h> 41 41 #include <stdbool.h> -
uspace/srv/hid/output/ctl/serial.c
re48947e r8d2dd7f2 35 35 */ 36 36 37 #include <sys/types.h>38 37 #include <errno.h> 39 38 #include <io/chargrid.h> -
uspace/srv/hid/output/output.c
re48947e r8d2dd7f2 27 27 */ 28 28 29 #include <s ys/types.h>29 #include <stddef.h> 30 30 #include <errno.h> 31 31 #include <malloc.h> -
uspace/srv/hid/output/output.h
re48947e r8d2dd7f2 30 30 #define OUTPUT_OUTPUT_H_ 31 31 32 #include <sys/types.h>33 32 #include <stdbool.h> 34 33 #include <loc.h> -
uspace/srv/hid/output/port/chardev.c
re48947e r8d2dd7f2 30 30 */ 31 31 32 #include <sys/types.h> 32 #include <stddef.h> 33 #include <stdint.h> 33 34 #include <char_dev_iface.h> 34 35 #include <stdio.h> -
uspace/srv/hid/output/port/kchar.c
re48947e r8d2dd7f2 31 31 */ 32 32 33 #include <s ys/types.h>33 #include <stdint.h> 34 34 #include <errno.h> 35 35 #include <str.h> -
uspace/srv/hid/output/port/niagara.c
re48947e r8d2dd7f2 32 32 */ 33 33 34 #include <s ys/types.h>34 #include <stdint.h> 35 35 #include <errno.h> 36 36 #include <sysinfo.h> -
uspace/srv/hid/output/port/ski.c
re48947e r8d2dd7f2 31 31 */ 32 32 33 #include <sys/types.h>34 33 #include <errno.h> 35 34 #include <sysinfo.h> -
uspace/srv/hid/output/proto/vt100.c
re48947e r8d2dd7f2 30 30 */ 31 31 32 #include <sys/types.h>33 32 #include <inttypes.h> 34 33 #include <errno.h> -
uspace/srv/hid/output/proto/vt100.h
re48947e r8d2dd7f2 33 33 #define OUTPUT_PROTO_VT100_H_ 34 34 35 #include <sys/types.h>36 35 #include <io/charfield.h> 37 36 -
uspace/srv/hid/s3c24xx_ts/s3c24xx_ts.h
re48947e r8d2dd7f2 38 38 #define S3C24XX_TS_H_ 39 39 40 #include <s ys/types.h>40 #include <stdint.h> 41 41 #include <async.h> 42 42 -
uspace/srv/hw/bus/cuda_adb/cuda_adb.c
re48947e r8d2dd7f2 39 39 #include <stdio.h> 40 40 #include <stdlib.h> 41 #include <sys/types.h> 41 #include <stddef.h> 42 #include <stdint.h> 42 43 #include <stdbool.h> 43 44 #include <ddi.h> -
uspace/srv/hw/bus/cuda_adb/cuda_adb.h
re48947e r8d2dd7f2 37 37 #define CUDA_ADB_H_ 38 38 39 #include <sys/types.h> 39 #include <stddef.h> 40 #include <stdint.h> 40 41 #include <async.h> 41 42 #include <fibril_synch.h> -
uspace/srv/hw/char/s3c24xx_uart/s3c24xx_uart.h
re48947e r8d2dd7f2 38 38 #define S3C24XX_UART_H_ 39 39 40 #include <s ys/types.h>40 #include <stdint.h> 41 41 #include <async.h> 42 42 -
uspace/srv/loader/main.c
re48947e r8d2dd7f2 47 47 #include <stdlib.h> 48 48 #include <stdbool.h> 49 #include <s ys/types.h>49 #include <stddef.h> 50 50 #include <ipc/services.h> 51 51 #include <ipc/loader.h> -
uspace/srv/locsrv/locsrv.h
re48947e r8d2dd7f2 39 39 #include <async.h> 40 40 #include <fibril_synch.h> 41 #include <s ys/types.h>41 #include <stddef.h> 42 42 43 43 /** Representation of server (supplier). -
uspace/srv/net/dhcp/transport.h
re48947e r8d2dd7f2 40 40 #include <inet/udp.h> 41 41 #include <ipc/loc.h> 42 #include <s ys/types.h>42 #include <stddef.h> 43 43 44 44 struct dhcp_transport; -
uspace/srv/net/ethip/ethip.h
re48947e r8d2dd7f2 43 43 #include <inet/addr.h> 44 44 #include <loc.h> 45 #include <sys/types.h> 45 #include <stddef.h> 46 #include <stdint.h> 46 47 47 48 typedef struct { -
uspace/srv/net/ethip/std.h
re48947e r8d2dd7f2 38 38 #define ETHIP_STD_H_ 39 39 40 #include <s ys/types.h>40 #include <stdint.h> 41 41 #include <inet/addr.h> 42 42 -
uspace/srv/net/inetsrv/addrobj.h
re48947e r8d2dd7f2 38 38 #define INET_ADDROBJ_H_ 39 39 40 #include <sys/types.h> 40 #include <stddef.h> 41 #include <stdint.h> 41 42 #include "inetsrv.h" 42 43 -
uspace/srv/net/inetsrv/icmp_std.h
re48947e r8d2dd7f2 38 38 #define ICMP_STD_H_ 39 39 40 #include <s ys/types.h>40 #include <stdint.h> 41 41 42 42 #define IP_PROTO_ICMP 1 -
uspace/srv/net/inetsrv/icmpv6_std.h
re48947e r8d2dd7f2 38 38 #define ICMPV6_STD_H_ 39 39 40 #include <s ys/types.h>40 #include <stdint.h> 41 41 42 42 #define IP_PROTO_ICMPV6 58 -
uspace/srv/net/inetsrv/inet_link.h
re48947e r8d2dd7f2 38 38 #define INET_LINK_H_ 39 39 40 #include <sys/types.h> 40 #include <stddef.h> 41 #include <stdint.h> 41 42 #include "inetsrv.h" 42 43 -
uspace/srv/net/inetsrv/inet_std.h
re48947e r8d2dd7f2 38 38 #define INET_STD_H_ 39 39 40 #include <s ys/types.h>40 #include <stdint.h> 41 41 42 42 #define IP6_NEXT_FRAGMENT 44 -
uspace/srv/net/inetsrv/inetcfg.c
re48947e r8d2dd7f2 43 43 #include <stdlib.h> 44 44 #include <str.h> 45 #include <s ys/types.h>45 #include <stddef.h> 46 46 #include <types/inetcfg.h> 47 47 -
uspace/srv/net/inetsrv/inetping.c
re48947e r8d2dd7f2 43 43 #include <loc.h> 44 44 #include <stdlib.h> 45 #include <sys/types.h> 45 #include <stddef.h> 46 #include <stdint.h> 46 47 #include <types/inetping.h> 47 48 #include "icmp.h" -
uspace/srv/net/inetsrv/inetsrv.c
re48947e r8d2dd7f2 45 45 #include <stdio.h> 46 46 #include <stdlib.h> 47 #include <sys/types.h> 47 #include <stddef.h> 48 #include <stdint.h> 48 49 #include <task.h> 49 50 #include "addrobj.h" -
uspace/srv/net/inetsrv/inetsrv.h
re48947e r8d2dd7f2 43 43 #include <inet/iplink.h> 44 44 #include <ipc/loc.h> 45 #include <sys/types.h> 45 #include <stddef.h> 46 #include <stdint.h> 46 47 #include <types/inet.h> 47 48 #include <async.h> -
uspace/srv/net/inetsrv/ndp.h
re48947e r8d2dd7f2 38 38 #define NDP_H_ 39 39 40 #include <sys/types.h>41 40 #include <inet/addr.h> 42 41 #include "inetsrv.h" -
uspace/srv/net/inetsrv/pdu.h
re48947e r8d2dd7f2 39 39 40 40 #include <loc.h> 41 #include <sys/types.h> 41 #include <stddef.h> 42 #include <stdint.h> 42 43 #include "inetsrv.h" 43 44 #include "ndp.h" -
uspace/srv/net/inetsrv/reass.h
re48947e r8d2dd7f2 38 38 #define INET_REASS_H_ 39 39 40 #include <sys/types.h>41 40 #include "inetsrv.h" 42 41 -
uspace/srv/net/inetsrv/sroute.h
re48947e r8d2dd7f2 38 38 #define INET_SROUTE_H_ 39 39 40 #include <sys/types.h> 40 #include <stddef.h> 41 #include <stdint.h> 41 42 #include "inetsrv.h" 42 43 -
uspace/srv/net/nconfsrv/iplink.h
re48947e r8d2dd7f2 38 38 #define NCONFSRV_IPLINK_H_ 39 39 40 #include <s ys/types.h>40 #include <stddef.h> 41 41 #include "nconfsrv.h" 42 42 -
uspace/srv/net/nconfsrv/nconfsrv.c
re48947e r8d2dd7f2 47 47 #include <stdio.h> 48 48 #include <stdlib.h> 49 #include <sys/types.h>50 49 #include <task.h> 51 50 #include "iplink.h" -
uspace/srv/net/tcp/pdu.h
re48947e r8d2dd7f2 37 37 38 38 #include <inet/endpoint.h> 39 #include <s ys/types.h>39 #include <stddef.h> 40 40 #include "std.h" 41 41 #include "tcp_type.h" -
uspace/srv/net/tcp/segment.h
re48947e r8d2dd7f2 36 36 #define SEGMENT_H 37 37 38 #include <sys/types.h> 38 #include <stddef.h> 39 #include <stdint.h> 39 40 #include "tcp_type.h" 40 41 -
uspace/srv/net/tcp/seq_no.c
re48947e r8d2dd7f2 37 37 #include <assert.h> 38 38 #include <stdbool.h> 39 #include <s ys/types.h>39 #include <stdint.h> 40 40 #include "seq_no.h" 41 41 #include "tcp_type.h" -
uspace/srv/net/tcp/seq_no.h
re48947e r8d2dd7f2 36 36 #define SEQ_NO_H 37 37 38 #include <s ys/types.h>38 #include <stdint.h> 39 39 #include "tcp_type.h" 40 40 -
uspace/srv/net/tcp/std.h
re48947e r8d2dd7f2 38 38 #define STD_H 39 39 40 #include <s ys/types.h>40 #include <stdint.h> 41 41 #include <inet/addr.h> 42 42 -
uspace/srv/net/tcp/tcp_type.h
re48947e r8d2dd7f2 41 41 #include <fibril.h> 42 42 #include <fibril_synch.h> 43 #include <sys/types.h> 43 #include <stddef.h> 44 #include <stdint.h> 44 45 #include <inet/addr.h> 45 46 #include <inet/endpoint.h> -
uspace/srv/net/tcp/ucall.h
re48947e r8d2dd7f2 37 37 38 38 #include <inet/endpoint.h> 39 #include <s ys/types.h>39 #include <stddef.h> 40 40 #include "tcp_type.h" 41 41 -
uspace/srv/net/udp/assoc.h
re48947e r8d2dd7f2 38 38 #include <inet/endpoint.h> 39 39 #include <ipc/loc.h> 40 #include <sys/types.h>41 40 #include "udp_type.h" 42 41 -
uspace/srv/net/udp/pdu.h
re48947e r8d2dd7f2 37 37 38 38 #include <inet/endpoint.h> 39 #include <sys/types.h>40 39 #include "std.h" 41 40 #include "udp_type.h" -
uspace/srv/net/udp/std.h
re48947e r8d2dd7f2 38 38 #define STD_H 39 39 40 #include <s ys/types.h>40 #include <stdint.h> 41 41 42 42 #define IP_PROTO_UDP 17 -
uspace/srv/net/udp/udp_type.h
re48947e r8d2dd7f2 41 41 #include <inet/endpoint.h> 42 42 #include <ipc/loc.h> 43 #include <s ys/types.h>43 #include <stddef.h> 44 44 #include <inet/addr.h> 45 45 -
uspace/srv/ns/clonable.h
re48947e r8d2dd7f2 35 35 36 36 #include <ipc/common.h> 37 #include <sys/types.h>38 37 #include <ipc/services.h> 39 38 #include <abi/ipc/interfaces.h> -
uspace/srv/ns/service.h
re48947e r8d2dd7f2 34 34 #define NS_SERVICE_H__ 35 35 36 #include <sys/types.h>37 36 #include <ipc/common.h> 38 37 #include <ipc/services.h> -
uspace/srv/vfs/vfs.h
re48947e r8d2dd7f2 38 38 #include <adt/hash_table.h> 39 39 #include <fibril_synch.h> 40 #include <sys/types.h> 40 #include <stddef.h> 41 #include <stdint.h> 41 42 #include <loc.h> 42 43 #include <stdbool.h> -
uspace/srv/volsrv/part.h
re48947e r8d2dd7f2 39 39 40 40 #include <loc.h> 41 #include <s ys/types.h>41 #include <stddef.h> 42 42 #include <types/vol.h> 43 43 #include "types/part.h"
Note:
See TracChangeset
for help on using the changeset viewer.