Changeset 339
- Timestamp:
- Jul 10, 2003, 6:12:33 PM (22 years ago)
- Location:
- trunk/src/emx/include
- Files:
-
- 1 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/protocols/routed.h
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r338 r339 1 /*- modified for gcc/os2 by bird 2003 2 * 1 /*- 3 2 * Copyright (c) 1983, 1989, 1993 4 3 * The Regents of the University of California. All rights reserved. … … 35 34 * 36 35 * $FreeBSD: src/include/protocols/routed.h,v 1.15 1999/09/05 17:43:31 peter Exp $ 36 * 37 * @@level FreeBSD 5.1 38 * @@changed bird: TCPV40HDRS, TIMER_RATE from OS/2 headers. 37 39 */ 38 40 … … 40 42 #define _ROUTED_H_ 41 43 #ifndef TCPV40HDRS 42 43 /* OS2: This file is newer than the toolkit version, hope it doesn't do any harm. */44 44 45 45 #ifdef __cplusplus -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/include/protocols/rwhod.h
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r338 r339 1 /* modified for gcc/os2 by bird 2003 2 * 1 /* 3 2 * Copyright (c) 1983, 1993 4 3 * The Regents of the University of California. All rights reserved. … … 33 32 * 34 33 * @(#)rwhod.h 8.1 (Berkeley) 6/2/93 34 * 35 * @@level FreeBSD 5.1 36 * @@changed bird: TCPV40HDRS, #pragma pack(1) paranoia. 35 37 */ 36 38 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/include/protocols/talkd.h
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r338 r339 33 33 * 34 34 * @(#)talkd.h 8.1 (Berkeley) 6/2/93 35 * 36 * @@level FreeBSD 5.1 37 * @@changed bird: TPCV40HDRS, #pragma pack(1) paranoia. 35 38 */ 36 39 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/include/protocols/timed.h
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r338 r339 33 33 * 34 34 * @(#)timed.h 8.1 (Berkeley) 6/2/93 35 * 36 * $FreeBSD: src/include/protocols/timed.h,v 1.7 2002/02/03 12:00:05 markm Exp $ 37 * 38 * @@level FreeBSD 5.1 39 * @@changed bird: TCPV40HDRS, #pragma pack(1) paranoia. 35 40 */ 36 41 … … 48 53 #pragma pack(1) /* OS2 paranoia */ 49 54 struct tsp { 50 u_ chartsp_type;51 u_ chartsp_vers;52 u_ short tsp_seq;55 u_int8_t tsp_type; 56 u_int8_t tsp_vers; 57 u_int16_t tsp_seq; 53 58 union { 54 struct timeval tspu_time; 59 struct { 60 int32_t tv_sec; 61 int32_t tv_usec; 62 } tspu_time; 55 63 char tspu_hopcnt; 56 64 } tsp_u; … … 94 102 95 103 #ifdef TSPTYPES 96 c har *tsptype[TSPTYPENUMBER] =104 const char *tsptype[TSPTYPENUMBER] = 97 105 { "ANY", "ADJTIME", "ACK", "MASTERREQ", "MASTERACK", "SETTIME", "MASTERUP", 98 106 "SLAVEUP", "ELECTION", "ACCEPT", "REFUSE", "CONFLICT", "RESOLVE", "QUIT", -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/include/sys/cdefs.h
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r338 r339 1 /*- modified for gcc/os2 by bird 2003 2 * 1 /* 3 2 * Copyright (c) 1991, 1993 4 3 * The Regents of the University of California. All rights reserved. … … 36 35 * 37 36 * @(#)cdefs.h 8.8 (Berkeley) 1/9/95 38 * $FreeBSD: src/sys/sys/cdefs.h,v 1.68 2002/10/21 20:50:30 mike Exp $ 37 * $FreeBSD: src/sys/sys/cdefs.h,v 1.69 2003/04/18 18:59:34 bde Exp $ 38 * 39 * @@level FreeBSD 5.1 40 * @@changed bird: Toolkit compatibility (_CDEFS_H_ and __TCPROTO()). 39 41 */ 40 42 41 43 #ifndef _SYS_CDEFS_H_ 42 44 #define _SYS_CDEFS_H_ 43 #define _CDEFS_H_ /* compatability */45 #define _CDEFS_H_ /* bird: compatability */ 44 46 45 47 #if defined(__cplusplus) … … 192 194 193 195 /* Compiler-dependent macros that rely on FreeBSD-specific extensions. */ 194 #if __FreeBSD_cc_version >= 300001 && __FreeBSD_cc_version < 500003196 #if __FreeBSD_cc_version >= 300001 195 197 #define __printf0like(fmtarg, firstvararg) \ 196 198 __attribute__((__format__ (__printf0__, fmtarg, firstvararg))) … … 199 201 #endif 200 202 201 #if 0 /* def __GNUC__ - ELF specific, so skip everything */203 #if 0 /* def __GNUC__ - bird: ELF specific, so skip everything */ 202 204 #define __strong_reference(sym,aliassym) \ 203 205 extern __typeof (sym) aliassym __attribute__ ((__alias__ (#sym))); … … 235 237 * more recent ELF binutils, we use .ident allowing the ID to be stripped. 236 238 * Usage: 237 * __FBSDID("$FreeBSD: src/sys/sys/cdefs.h,v 1.6 8 2002/10/21 20:50:30 mike Exp $");239 * __FBSDID("$FreeBSD: src/sys/sys/cdefs.h,v 1.69 2003/04/18 18:59:34 bde Exp $"); 238 240 */ 239 241 #ifndef __FBSDID … … 394 396 #endif 395 397 396 /* toolkit pollution */398 /* bird: toolkit pollution */ 397 399 #define __TCPPROTO(args) __P(args) 398 400 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.