Changeset bd48f4c in mainline for uspace/srv
- Timestamp:
- 2010-07-12T10:53:30Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bd11d3e
- Parents:
- c40e6ef (diff), bee2d4c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- uspace/srv
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/tmpfs/tmpfs_ops.c
rc40e6ef rbd48f4c 41 41 #include <ipc/ipc.h> 42 42 #include <macros.h> 43 #include < limits.h>43 #include <stdint.h> 44 44 #include <async.h> 45 45 #include <errno.h> -
uspace/srv/net/tl/icmp/icmp.c
rc40e6ef rbd48f4c 98 98 /** Free identifier numbers pool end. 99 99 */ 100 #define ICMP_FREE_IDS_END MAX_UINT16100 #define ICMP_FREE_IDS_END UINT16_MAX 101 101 102 102 /** Computes the ICMP datagram checksum. … … 263 263 }else{ 264 264 res = icmp_echo(echo_data->identifier, echo_data->sequence_number, size, timeout, ttl, tos, dont_fragment, addr, addrlen); 265 if(echo_data->sequence_number < MAX_UINT16){265 if(echo_data->sequence_number < UINT16_MAX){ 266 266 ++ echo_data->sequence_number; 267 267 }else{ … … 731 731 fibril_rwlock_write_unlock(&icmp_globals.lock); 732 732 free(addr); 733 if(echo_data->sequence_number < MAX_UINT16){733 if(echo_data->sequence_number < UINT16_MAX){ 734 734 ++ echo_data->sequence_number; 735 735 }else{ -
uspace/srv/vfs/vfs_ops.c
rc40e6ef rbd48f4c 39 39 #include <ipc/ipc.h> 40 40 #include <macros.h> 41 #include < limits.h>41 #include <stdint.h> 42 42 #include <async.h> 43 43 #include <errno.h>
Note:
See TracChangeset
for help on using the changeset viewer.