Changeset 828
- Timestamp:
- Oct 11, 2003, 1:38:11 AM (22 years ago)
- Location:
- trunk/src/emx
- Files:
-
- 1 added
- 94 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/termios.h
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r827 r828 151 151 int tcsetattr (int, int, __const__ struct termios *); 152 152 153 #ifndef _POSIX_SOURCE 154 int cfsetspeed (struct termios *, speed_t); 155 #endif /* !_POSIX_SOURCE */ 156 153 157 #if defined (__cplusplus) 154 158 } -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/emxbind/fixup.c
-
Property cvs2svn:cvs-rev
changed from
1.5
to1.6
r827 r828 312 312 is a number to be added to the fixup target. */ 313 313 314 void ref_proc (const char *sym_name, int obj, dword addr, int mod,315 const char *name, int ord, int fixup_type, dword add)314 static void ref_proc (const char *sym_name, int obj, dword addr, int mod, 315 const char *name, int ord, int fixup_type, dword add) 316 316 { 317 317 grow_fixup (); … … 508 508 records. */ 509 509 510 void import_reloc (const struct relocation_info *table, long tab_size,511 int seg_obj, dword seg_base, const byte *image,512 dword image_size)510 static void import_reloc (const struct relocation_info *table, long tab_size, 511 int seg_obj, dword seg_base, const byte *image, 512 dword image_size) 513 513 { 514 514 int reloc_count, i, j, len, ok; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/emxexp/emxexp.c
-
Property cvs2svn:cvs-rev
changed from
1.11
to1.12
r827 r828 38 38 }; 39 39 40 /* if != 0 we're supposed to add ordinals to the symbols. */ 40 /* if != 0 we're supposed to add ordinals to the symbols. */ 41 41 static int ordinal = 0; 42 /* if set the ordinals is to be sequentially assigned with no 42 /* if set the ordinals is to be sequentially assigned with no 43 43 conveniency gaps or anything. */ 44 44 static int ordinal_seq = FALSE; … … 46 46 static int bss_flag = FALSE; 47 47 static int weak_flag = FALSE; 48 /* When clear we'll do sorting and handle make sure there no duplicate weak 49 names and such. If set we'll just dump the publics and comdefs as we 48 /* When clear we'll do sorting and handle make sure there no duplicate weak 49 names and such. If set we'll just dump the publics and comdefs as we 50 50 used to do. */ 51 51 static int legacy_mode = FALSE; … … 69 69 70 70 /* Aout globals */ 71 static char *aout_segnames[] = 72 { 73 NULL, NULL, /* 0 N_UNDF */ 74 NULL, NULL, /* 2 N_ABS */ 75 "TEXT32", "TEXT32", /* 4 N_TEXT */ 76 "DATA32", "DATA32", /* 6 N_DATA */ 77 "BSS32", "BSS32", /* 8 N_BSS */ 71 static char *aout_segnames[] = 72 { 73 NULL, NULL, /* 0 N_UNDF */ 74 NULL, NULL, /* 2 N_ABS */ 75 "TEXT32", "TEXT32", /* 4 N_TEXT */ 76 "DATA32", "DATA32", /* 6 N_DATA */ 77 "BSS32", "BSS32", /* 8 N_BSS */ 78 78 NULL, NULL, /* a */ 79 79 NULL, NULL, /* c, d N_WEAKU */ … … 83 83 }; 84 84 85 /* Per segment name sorting 85 /* Per segment name sorting 86 86 Symbols are orginized in two constructs. One is a global symbol name 87 string pool kind thing. The other is per segment. 88 87 string pool kind thing. The other is per segment. 88 89 89 Weak symbols and communial data may be overridden. In those cases we'll 90 90 unlink the symbol and reinstert it to ensure that we don't get it in the … … 99 99 }; 100 100 101 /* LIFO of modules. (only so we can free it) 101 /* LIFO of modules. (only so we can free it) 102 102 The head module is the current one. */ 103 struct new_module *new_modules; 103 struct new_module *new_modules; 104 104 105 105 … … 113 113 unsigned fweak:1; /* Weak symbol. */ 114 114 unsigned fcomm:1; /* Communial data. */ 115 unsigned fdummy:1; /* Dummy node, the one which is first & last 116 in the lists to save use from any 115 unsigned fdummy:1; /* Dummy node, the one which is first & last 116 in the lists to save use from any 117 117 unpleasant list head/tail thinking. */ 118 }; 118 }; 119 119 120 120 /* List of segments. */ … … 152 152 used like malloc(), but we don't have to check the return value. */ 153 153 154 void *xmalloc (size_t n)154 static void *xmalloc (size_t n) 155 155 { 156 156 void *p; … … 167 167 return value. */ 168 168 169 void *xrealloc (void *ptr, size_t n)169 static void *xrealloc (void *ptr, size_t n) 170 170 { 171 171 void *p; … … 182 182 return value. */ 183 183 184 char *xstrdup (const char *s)184 static char *xstrdup (const char *s) 185 185 { 186 186 char *p; … … 211 211 212 212 213 /* New export function. This will filter out duplicated BSS32 and weak 214 symbols and insert the symbols into arrays according to segment 213 /* New export function. This will filter out duplicated BSS32 and weak 214 symbols and insert the symbols into arrays according to segment 215 215 value. new_print() will be called when all the input files are 216 216 processed and do the actual printing and ordinal assignments. */ 217 217 218 218 static void new_export (const char *name, const char *segname, int fweak, int fcomm) 219 219 { … … 243 243 new_hashtable[uhash] = psym; 244 244 } 245 else 245 else 246 246 {/* existing. look for overrided symbols (weak/comm) and ignore duplicates. */ 247 247 if (fweak || fcomm) … … 268 268 psym->fweak = fweak; 269 269 psym->fdummy = 0; 270 psym->mod = new_modules; 270 psym->mod = new_modules; 271 271 272 272 273 273 /* find the segment */ 274 274 for (psymgrp = new_symgrps; psymgrp; psymgrp = psymgrp->next) 275 if ( psymgrp->name == segname 275 if ( psymgrp->name == segname 276 276 || (segname && psymgrp->name && !strcmp(psymgrp->name, segname)) 277 277 ) … … 307 307 308 308 309 /* Print the publics. (new method) 310 311 When -o is not specified with number, to leave a round number of unused 309 /* Print the publics. (new method) 310 311 When -o is not specified with number, to leave a round number of unused 312 312 ordinals between the segments out of convenience mostly. */ 313 313 … … 318 318 { 319 319 struct new_symbol *psym; 320 320 321 321 /* print a decent header */ 322 322 if (psymgrp->name) 323 fprintf (phfile, " ; segment %s\n", psymgrp->name); 323 fprintf (phfile, " ; segment %s\n", psymgrp->name); 324 324 else 325 fprintf (phfile, " ; segment noname\n"); 325 fprintf (phfile, " ; segment noname\n"); 326 326 327 327 /* enumerate symbols */ … … 349 349 350 350 /* comments - the first one might be used by emximp later... */ 351 fprintf (phfile, " ; magicseg='%s' len=%d", 351 fprintf (phfile, " ; magicseg='%s' len=%d", 352 352 psymgrp->name ? psymgrp->name : "", strlen(psym->name)); 353 353 if (psym->fweak) … … 359 359 360 360 fputc ('\n', phfile); 361 } 362 361 } 362 363 363 /* skip a line and some ordinals if we're allowed */ 364 364 fputc ('\n', phfile); … … 464 464 export (name); 465 465 else 466 new_export (name, aout_segnames[sym_ptr[i].n_type], 467 sym_ptr[i].n_type >= N_WEAKU && sym_ptr[i].n_type >= N_WEAKB, 466 new_export (name, aout_segnames[sym_ptr[i].n_type], 467 sym_ptr[i].n_type >= N_WEAKU && sym_ptr[i].n_type >= N_WEAKB, 468 468 FALSE); 469 469 } … … 476 476 export_bss (name); 477 477 else 478 new_export (name, aout_segnames[sym_ptr[i].n_type], 479 sym_ptr[i].n_type >= N_WEAKU && sym_ptr[i].n_type >= N_WEAKB, 478 new_export (name, aout_segnames[sym_ptr[i].n_type], 479 sym_ptr[i].n_type >= N_WEAKU && sym_ptr[i].n_type >= N_WEAKB, 480 480 TRUE); 481 481 } … … 691 691 692 692 static void omf_segdef (void) 693 { 693 { 694 694 byte flags; 695 695 unsigned nameidx; 696 696 unsigned classidx; 697 697 unsigned ovlidx; 698 698 699 699 /* all we want the the segment name */ 700 700 flags = get_byte (); /* segment attributes */ … … 705 705 } 706 706 if (rec_type & REC32) /* segment length */ 707 get_dword (); 707 get_dword (); 708 708 else 709 709 get_word (); … … 773 773 } 774 774 } while (rec.rec_type != MODEND && rec_type != (MODEND|REC32)); 775 775 776 776 /* cleanup (entry 0 isn't used) */ 777 777 for (i = 1; i < num_lnames; i++) -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/emximp/emximp.c
-
Property cvs2svn:cvs-rev
changed from
1.6
to1.7
r827 r828 159 159 160 160 161 void *xmalloc (size_t n)161 static void *xmalloc (size_t n) 162 162 { 163 163 void *p; … … 170 170 171 171 172 void *xrealloc (void *p, size_t n)172 static void *xrealloc (void *p, size_t n) 173 173 { 174 174 void *q; … … 181 181 182 182 183 char *xstrdup (const char *s)183 static char *xstrdup (const char *s) 184 184 { 185 185 char *p; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/emxomf/emxaout.c
-
Property cvs2svn:cvs-rev
changed from
1.4
to1.5
r827 r828 249 249 string, all other arguments are formatted according to FMT. */ 250 250 251 void warning (const char *fmt, ...)251 static void warning (const char *fmt, ...) 252 252 { 253 253 va_list arg_ptr; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/emxomf/listomf.c
-
Property cvs2svn:cvs-rev
changed from
1.11
to1.12
r827 r828 2083 2083 { 2084 2084 int group, segment; 2085 dword i, addr, files, line, stmt, lst_line, first_col, num_cols;2085 dword addr, line, stmt, lst_line, first_col, num_cols; 2086 2086 word src_line, index; 2087 2087 byte reserved; … … 2192 2192 num_cols = get_dword (); 2193 2193 linnum_files = get_dword (); 2194 printf (" first column: %lu, columns: %lu, number of files: % ld\n",2195 first_col, num_cols, files);2194 printf (" first column: %lu, columns: %lu, number of files: %d\n", 2195 first_col, num_cols, linnum_files); 2196 2196 linnum_file_idx = 0; 2197 2197 } … … 2199 2199 for (; linnum_file_idx < linnum_files && rec_idx < rec_len; ++linnum_file_idx) 2200 2200 { 2201 printf (" #% lu: ", linnum_file_idx + 1);2201 printf (" #%d: ", linnum_file_idx + 1); 2202 2202 get_string (name); 2203 2203 show_string (name); -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/emxomf/stripomf.c
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r827 r828 57 57 * @param pszFile Filename. 58 58 */ 59 const char * mybasename(const char *pszFile)59 static const char * mybasename(const char *pszFile) 60 60 { 61 61 const char *psz; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/app/stdio.c
-
Property cvs2svn:cvs-rev
changed from
1.5
to1.6
r827 r828 41 41 _CRT_init() via the __crtinit1__ set vector. */ 42 42 43 void _init_streams (void); 43 44 void _init_streams (void) 44 45 { … … 115 116 print something. (ISO 9899-1990 lets this undefined.) */ 116 117 118 void _exit_streams (void); 117 119 void _exit_streams (void) 118 120 { -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/conv/atofl.c
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r827 r828 6 6 #include <math.h> 7 7 8 /* this isn't a standard function declared anywhere */ 9 long double atofl (__const__ char *); 10 8 11 long double _STD(atofl) (const char *s) 9 12 { -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/conv/smalatod.c
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r827 r828 9 9 #include <ctype.h> 10 10 #include <errno.h> 11 #define __atod __small_atod /* bird: let's get a prototype. */ 11 12 #include <emx/float.h> 12 13 #include <sys/locale.h> -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/conv/smaldtoa.c
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r827 r828 6 6 #include <math.h> 7 7 #include <float.h> 8 #define __dtoa __small_dtoa /* bird: let's get a prototype. */ 8 9 #include <emx/float.h> 9 10 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/emxload/emxloadl.c
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r827 r828 6 6 #include <os2emx.h> /* Define FALSE */ 7 7 #include <emx/emxload.h> 8 #include <sys/emxload.h> 8 9 9 10 int _emxload_list_start (void) -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/iconv/iconv.c
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r827 r828 19 19 #include <errno.h> 20 20 #include <alloca.h> 21 22 extern void 23 __convert_codepage (const char *cp, UniChar *ucp); 21 #include <emx/locale.h> 24 22 25 23 iconv_t -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/io/_fdinit.c
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r827 r828 23 23 _CRT_init() via the __crtinit1__ set vector. */ 24 24 25 void _init1_fdinit (void); 25 26 void _init1_fdinit (void) 26 27 { -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/io/_tmp.c
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r827 r828 19 19 _CRT_init() via the __crtinit1__ set vector. */ 20 20 21 void _init1_tmp (void); 21 22 void _init1_tmp (void) 22 23 { -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/io/eadread.c
-
Property cvs2svn:cvs-rev
changed from
1.5
to1.6
r827 r828 150 150 i = strlen(path) + 1; 151 151 fileref = alloca(i); 152 memcpy( fileref, path, i);152 memcpy((void*)fileref, path, i); 153 153 } 154 154 else -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/libc.def
-
Property cvs2svn:cvs-rev
changed from
1.22
to1.23
r827 r828 126 126 "__umalloc" @146 127 127 "__um_alloc_no_lock" @147 128 "__ um_crumb_alloc" @148128 "__linitheap" @148 129 129 "__um_crumb_free_maybe_lock" @149 130 130 "__um_default_alloc" @150 … … 848 848 "__hrealloc" @868 849 849 "__lcalloc" @869 850 "__linitheap" @870 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/locale/__convcp.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r827 r828 11 11 #include <string.h> 12 12 #include <uconv.h> 13 #include <emx/locale.h> 13 14 14 15 /* Convert an encoding name to te form understood by UniCreateUconvObject. */ 15 void 16 __convert_codepage (const char *cp, UniChar *ucp) 16 void __convert_codepage (const char *cp, UniChar *ucp) 17 17 { 18 18 size_t sl = 0; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/locale/__do_uni.c
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r827 r828 16 16 #include <malloc.h> 17 17 #include <string.h> 18 #include <emx/locale.h> 18 19 19 20 void __do_Unicode (UconvObject *uconv, char *s, void *arg, -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/locale/__from_ucs.c
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r827 r828 12 12 #include <os2emx.h> 13 13 #include <uconv.h> 14 #include <emx/locale.h> 14 15 15 16 int __from_ucs (UconvObject uconv_obj, UniChar c, unsigned char *sbcs, -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/locale/__to_ucs.c
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r827 r828 12 12 #include <os2emx.h> 13 13 #include <uconv.h> 14 #include <emx/locale.h> 14 15 15 16 int __to_ucs (UconvObject uconv_obj, const unsigned char *sbcs, size_t len, -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/locale/isxxx.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r827 r828 12 12 #include "libc-alias.h" 13 13 #include <sys/locale.h> 14 15 int isalnum(int); 16 int isalpha(int); 17 int iscntrl(int); 18 int isdigit(int); 19 int isgraph(int); 20 int islower(int); 21 int isprint(int); 22 int ispunct(int); 23 int isspace(int); 24 int isupper(int); 25 int isxdigit(int); 26 int isascii(int); 27 int toascii(int); 14 28 15 29 int isalnum (int _c) -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/locale/locale_ctype.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r827 r828 63 63 }; 64 64 65 int tolower (int _c); 66 int toupper (int _c); 67 65 68 int tolower (int _c) 66 69 { return __locale_ctype.locase [_c & 0xff]; } -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/malloc/expand.c
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r827 r828 10 10 #include <emx/umalloc.h> 11 11 12 /* this is not a standard function! Thus the prototype. */ 13 void *expand (void *block, size_t new_size); 14 12 15 void *_STD(expand) (void *block, size_t new_size) 13 16 { -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/malloc/heapwalk.c
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r827 r828 2 2 3 3 #include "libc-alias.h" 4 #include <malloc.h> 4 5 #include <umalloc.h> 5 6 #include <emx/umalloc.h> -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/malloc/ialloc.c
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r827 r828 14 14 /* ALIGN must be a power of two. */ 15 15 16 void *_um_crumb_alloc (struct _um_crateset *crateset, size_t size,17 size_t align, unsigned flags)16 static void *_um_crumb_alloc (struct _um_crateset *crateset, size_t size, 17 size_t align, unsigned flags) 18 18 { 19 19 void *result; … … 159 159 assert (_UM_TILE_OK (block, size)); 160 160 } 161 161 162 162 /* Remove the lump from the free list. */ 163 163 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/mbyte/mblen.c
-
Property cvs2svn:cvs-rev
changed from
1.5
to1.6
r827 r828 8 8 to by s. If s is NULL, the shift state is reset to the initial state. 9 9 At most n bytes at s are examined; a multibyte character consisting of 10 more than n bytes is deemed invalid. 10 more than n bytes is deemed invalid. 11 11 12 12 If s is NULL, mblen() returns a non-zero value (if state-dependent encoding … … 15 15 the number of bytes comprising the multibyte character pointed to by s 16 16 (if there is a valid multibyte character), or -1 (if there is not a valid 17 multibyte character). 17 multibyte character). 18 18 19 19 Affected by LC_CTYPE locale setting. … … 25 25 #define __INTERNAL_DEFS 26 26 #include "libc-alias.h" 27 #include <stdlib.h> 27 28 #include <sys/locale.h> 28 29 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/mbyte/mbstowcs.c
-
Property cvs2svn:cvs-rev
changed from
1.5
to1.6
r827 r828 28 28 #include "libc-alias.h" 29 29 #include <sys/locale.h> 30 #include <stdlib.h> 30 31 #include <string.h> 31 32 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/mbyte/mbtowc.c
-
Property cvs2svn:cvs-rev
changed from
1.6
to1.7
r827 r828 31 31 #include <sys/locale.h> 32 32 #include <string.h> 33 #include <stdlib.h> 33 34 34 35 int _STD(mbtowc) (wchar_t *pwc, const char *s, size_t n) -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/mbyte/wcstombs.c
-
Property cvs2svn:cvs-rev
changed from
1.5
to1.6
r827 r828 28 28 #include <sys/locale.h> 29 29 #include <string.h> 30 #include <stdlib.h> 30 31 31 32 size_t _STD(wcstombs) (char *s, const wchar_t *pwcs, size_t n) -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/misc/abs.c
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r827 r828 2 2 3 3 #include "libc-alias.h" 4 5 int _STD(abs) (int n); /* inlined in header. */ 4 6 5 7 int _STD(abs) (int n) -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/misc/basename.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r827 r828 16 16 #include <string.h> 17 17 #include <ctype.h> 18 19 char *_STD(basename) (char *pathname); /* header is messing with the name redefinition. */ 18 20 19 21 char *_STD(basename) (char *pathname) -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/misc/labs.c
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r827 r828 2 2 3 3 #include "libc-alias.h" 4 5 long _STD(labs) (long); /* inlined in header */ 4 6 5 7 long _STD(labs) (long n) -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/misc/os2bad.c
-
Property cvs2svn:cvs-rev
changed from
1.4
to1.5
r827 r828 7 7 static char msg[] = "\r\nOS/2 API call not fixed up\r\n"; 8 8 9 void _os2_bad (void); 10 9 11 void _os2_bad (void) 10 12 { -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/misc/pwd.c
-
Property cvs2svn:cvs-rev
changed from
1.4
to1.5
r827 r828 14 14 _fnslashify (dst); 15 15 } 16 17 /* since when were this a standard function? */ 18 struct passwd *getpw (uid_t uid, const char *name); 16 19 17 20 struct passwd *_STD(getpw) (uid_t uid, const char *name) -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/os2_386/revision.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r827 r828 5 5 6 6 static char const revision[] = "60"; 7 8 ULONG emx_revision (PCSZ name, LONG argc, const RXSTRING *argv, 9 PCSZ queuename, PRXSTRING retstr); 7 10 8 11 ULONG emx_revision (PCSZ name, LONG argc, const RXSTRING *argv, -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/os2_386/safe/SafeDosCreatePipe.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r827 r828 27 27 28 28 29 ULONG APIENTRY SafeDosCreatePipe(PHFILE phfReadHandle, PHFILE phfWriteHandle, ULONG ulPipeSize); 29 30 ULONG APIENTRY SafeDosCreatePipe(PHFILE phfReadHandle, PHFILE phfWriteHandle, ULONG ulPipeSize) 30 31 { -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/os2_386/safe/SafeDosDupHandle.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r827 r828 27 27 28 28 29 ULONG APIENTRY SafeDosDupHandle(HFILE hFile, PHFILE phFile); 29 30 ULONG APIENTRY SafeDosDupHandle(HFILE hFile, PHFILE phFile) 30 31 { 31 32 ULONG rc; 32 33 HFILE hf1; 33 PHFILE phf1 ;34 PHFILE phf1 = NULL; 34 35 35 36 if (phFile) -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/os2_386/safe/SafeDosForceDelete.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r827 r828 27 27 #include "safe.h" 28 28 29 ULONG APIENTRY SafeDosForceDelete(PCSZ pszFileName); 29 30 ULONG APIENTRY SafeDosForceDelete(PCSZ pszFileName) 30 31 { -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/os2_386/safe/SafeDosOpenL.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r827 r828 26 26 #include <os2.h> 27 27 #include "safe.h" 28 29 ULONG APIENTRY SafeDosOpenL(PCSZ pszFileName, PHFILE phFile, PULONG pulAction, 30 LONGLONG llFileSize, ULONG ulAttribute, ULONG ulOpenFlags, ULONG ulOpenMode, 31 PEAOP2 pEABuf); 28 32 29 33 ULONG APIENTRY SafeDosOpenL(PCSZ pszFileName, PHFILE phFile, PULONG pulAction, -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/os2_386/safe/SafeDosQueryFHState.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r827 r828 27 27 28 28 29 ULONG APIENTRY SafeDosQueryFHState(HFILE hFile, PULONG pulMode); 29 30 ULONG APIENTRY SafeDosQueryFHState(HFILE hFile, PULONG pulMode) 30 31 { -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/os2_386/safe/SafeDosQueryHType.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r827 r828 27 27 28 28 29 ULONG APIENTRY SafeDosQueryHType(HFILE hFile, PULONG pulType, PULONG pulAttr); 29 30 ULONG APIENTRY SafeDosQueryHType(HFILE hFile, PULONG pulType, PULONG pulAttr) 30 31 { -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/os2_386/safe/SafeDosQueryNPHState.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r827 r828 27 27 28 28 29 ULONG APIENTRY SafeDosQueryNPHState(HPIPE hpipe, PULONG pulState); 29 30 ULONG APIENTRY SafeDosQueryNPHState(HPIPE hpipe, PULONG pulState) 30 31 { -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/os2_386/safe/SafeDosSetDateTime.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r827 r828 28 28 29 29 30 ULONG APIENTRY SafeDosSetDateTime(__const__ DATETIME *pdt); 30 31 ULONG APIENTRY SafeDosSetDateTime(__const__ DATETIME *pdt) 31 32 { -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/os2_386/safe/SafeDosSetFilePtr.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r827 r828 27 27 28 28 29 ULONG APIENTRY SafeDosSetFilePtr(HFILE hFile, LONG lOffset, ULONG ulOrigin, PULONG pulPos); 29 30 ULONG APIENTRY SafeDosSetFilePtr(HFILE hFile, LONG lOffset, ULONG ulOrigin, PULONG pulPos) 30 31 { -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/os2_386/safe/SafeDosSetFilePtrL.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r827 r828 27 27 28 28 29 ULONG APIENTRY SafeDosSetFilePtrL(HFILE hFile, LONGLONG llOffset, ULONG ulOrigin, PLONGLONG pllPos); 29 30 ULONG APIENTRY SafeDosSetFilePtrL(HFILE hFile, LONGLONG llOffset, ULONG ulOrigin, PLONGLONG pllPos) 30 31 { … … 39 40 } 40 41 41 rc = DosSetFilePtr (hFile, llOffset, ulOrigin, pll1);42 rc = DosSetFilePtrL(hFile, llOffset, ulOrigin, pll1); 42 43 43 44 if (pllPos) -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/os2_386/safe/SafeDosWaitChild.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r827 r828 27 27 28 28 29 ULONG APIENTRY SafeDosWaitChild(ULONG ulAction, ULONG ulWait, PRESULTCODES pReturnCodes, PPID ppidOut, PID pidIn); 29 30 ULONG APIENTRY SafeDosWaitChild(ULONG ulAction, ULONG ulWait, PRESULTCODES pReturnCodes, PPID ppidOut, PID pidIn) 30 31 { -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/os2_386/safe/SafeDosWaitNPipe.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r827 r828 27 27 #include "safe.h" 28 28 29 ULONG APIENTRY SafeDosWaitNPipe(PCSZ pszName, ULONG ulTimeout); 29 30 ULONG APIENTRY SafeDosWaitNPipe(PCSZ pszName, ULONG ulTimeout) 30 31 { -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/process/beginthr.c
-
Property cvs2svn:cvs-rev
changed from
1.5
to1.6
r827 r828 35 35 struct _thread *_thread_tab[MAX_THREADS+1] = {NULL, &thread_1}; 36 36 37 38 struct _thread *__alloc_thread (void); /* used in thread.s */ 37 39 38 40 struct _thread *__alloc_thread (void) -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/process/rmutex.c
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r827 r828 147 147 148 148 149 void _rmutex_fork (void); 149 150 void _rmutex_fork (void) 150 151 { -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/startup/cleanup.c
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r827 r828 2 2 3 3 #include <stdio.h> 4 #include <emx\startup.h> 4 5 5 6 extern int __crtexit1__; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/startup/ctor1.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r827 r828 3 3 #include <stdlib.h> 4 4 5 void __ctordtorInit1 (int *ptr); 5 6 void __ctordtorInit1 (int *ptr) 6 7 { -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/startup/dllinit.c
-
Property cvs2svn:cvs-rev
changed from
1.9
to1.10
r827 r828 5 5 6 6 #include <emx/startup.h> 7 unsigned _System _DLL_InitTerm (unsigned hmod, unsigned flag); 7 8 8 9 /** -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/startup/dtor1.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r827 r828 2 2 3 3 #include <stdlib.h> 4 void __ctordtorTerm1 (int *ptr); 4 5 5 6 void __ctordtorTerm1 (int *ptr) -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/startup/gmon.c
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r827 r828 59 59 #define MSG "No space for profiling buffer(s)\n" 60 60 61 /* Forward definition */ 62 void moncontrol(); 61 /* Forward definition - bird: added prototypes to shut up GCC warnings. */ 62 void moncontrol(int mode); 63 void monstartup(char *lowpc, char *highpc); 64 void _mcleanup(void); 65 void _mcount(void); 66 int profil(char *, int, int, int); 67 63 68 64 69 void -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/startup/startup.c
-
Property cvs2svn:cvs-rev
changed from
1.5
to1.6
r827 r828 8 8 #include <emx/io.h> 9 9 #include <emx/syscalls.h> 10 #include <emx/startup.h> 10 11 11 12 /* See app/iodata.c. */ -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/str/strerror.c
-
Property cvs2svn:cvs-rev
changed from
1.7
to1.8
r827 r828 3 3 #include "libc-alias.h" 4 4 #include <stdio.h> 5 #include <stdlib.h> 5 6 #include <string.h> 6 7 #include <emx/thread.h> -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/sys/__exit.c
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r827 r828 4 4 #define INCL_FSMACROS 5 5 #include <os2emx.h> 6 void __exit (int rc); 6 7 7 8 void __exit (int rc) -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/sys/__getdrive.c
-
Property cvs2svn:cvs-rev
changed from
1.5
to1.6
r827 r828 6 6 #include <emx/syscalls.h> 7 7 #include "syscalls.h" 8 char _getdrive (void); /* should've been in direct.h */ 9 8 10 9 11 char _getdrive (void) -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/sys/__init.c
-
Property cvs2svn:cvs-rev
changed from
1.9
to1.10
r827 r828 23 23 #include <emx/startup.h> 24 24 #include <emx/syscalls.h> 25 #include <emx/umalloc.h> 25 26 #include <alloca.h> 26 27 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/sys/__initdll.c
-
Property cvs2svn:cvs-rev
changed from
1.4
to1.5
r827 r828 28 28 #include <emx/startup.h> 29 29 #include <emx/syscalls.h> 30 #include <emx/umalloc.h> 30 31 #include <alloca.h> 31 32 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/sys/__newthread.c
-
Property cvs2svn:cvs-rev
changed from
1.4
to1.5
r827 r828 7 7 #include <emx/umalloc.h> 8 8 #include "syscalls.h" 9 int __sys_newthread (int tid, int *errnop); /* used in sys/386/systhrea.s */ 9 10 10 /* Also used by 386/systhrea.s */11 11 12 12 int __sys_newthread (int tid, int *errnop) -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/sys/__open.c
-
Property cvs2svn:cvs-rev
changed from
1.5
to1.6
r827 r828 12 12 #include <limits.h> 13 13 #include <emx/syscalls.h> 14 #include <alloca.h> 14 15 #include "syscalls.h" 15 16 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/sys/brk.c
-
Property cvs2svn:cvs-rev
changed from
1.5
to1.6
r827 r828 4 4 #include <os2emx.h> 5 5 #include <errno.h> 6 #include <stdlib.h> 6 7 #include <sys/builtin.h> 7 8 #include <sys/fmutex.h> -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/sys/chdrive.c
-
Property cvs2svn:cvs-rev
changed from
1.4
to1.5
r827 r828 6 6 #include <emx/syscalls.h> 7 7 #include "syscalls.h" 8 9 /* this isn't standard, but PC enheritance without header. */ 10 int chdrive (char drive); 8 11 9 12 int _STD(chdrive) (char drive) -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/sys/execname.c
-
Property cvs2svn:cvs-rev
changed from
1.4
to1.5
r827 r828 5 5 #define INCL_FSMACROS 6 6 #include <os2emx.h> 7 #include <stdlib.h> 7 8 #include <string.h> 8 9 #include <emx/syscalls.h> -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/sys/filesys.c
-
Property cvs2svn:cvs-rev
changed from
1.5
to1.6
r827 r828 3 3 #include "libc-alias.h" 4 4 #include <string.h> 5 #include <stdlib.h> 5 6 #include <errno.h> 6 7 #define INCL_FSMACROS -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/sys/fsync.c
-
Property cvs2svn:cvs-rev
changed from
1.4
to1.5
r827 r828 4 4 #define INCL_FSMACROS 5 5 #include <os2emx.h> 6 #include <unistd.h> 6 7 #include <emx/syscalls.h> 7 8 #include "syscalls.h" -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/sys/getpid.c
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r827 r828 2 2 3 3 #include "libc-alias.h" 4 #include <unistd.h> 4 5 #include <os2emx.h> 5 6 #include "syscalls.h" -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/sys/getppid.c
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r827 r828 2 2 3 3 #include "libc-alias.h" 4 #include <unistd.h> 4 5 #include <os2emx.h> 5 6 #include "syscalls.h" -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/sys/heapdump.c
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r827 r828 4 4 #include "syscalls.h" 5 5 #include <stdio.h> 6 7 void _sys_dump_heap_objs (FILE *f); /* debug? */ 6 8 7 9 void _sys_dump_heap_objs (FILE *f) -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/sys/remove.c
-
Property cvs2svn:cvs-rev
changed from
1.7
to1.8
r827 r828 7 7 #include <os2safe.h> 8 8 #include <os2emx.h> 9 #include <stdio.h> 9 10 #include <emx/syscalls.h> 10 11 #include "syscalls.h" -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/sys/rename.c
-
Property cvs2svn:cvs-rev
changed from
1.4
to1.5
r827 r828 4 4 #define INCL_FSMACROS 5 5 #include <os2emx.h> 6 #include <stdio.h> 6 7 #include <emx/syscalls.h> 7 8 #include "syscalls.h" -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/sys/sbrk.c
-
Property cvs2svn:cvs-rev
changed from
1.5
to1.6
r827 r828 8 8 #include <sys/uflags.h> 9 9 #include <sys/types.h> 10 #include <stdlib.h> 10 11 #include <emx/syscalls.h> 11 12 #include "syscalls.h" -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/sys/scrsize.c
-
Property cvs2svn:cvs-rev
changed from
1.4
to1.5
r827 r828 5 5 #define INCL_FSMACROS 6 6 #include <os2emx.h> 7 #include <stdlib.h> 7 8 #include <os2thunk.h> 8 9 #include <emx/syscalls.h> -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/sys/sleep.c
-
Property cvs2svn:cvs-rev
changed from
1.4
to1.5
r827 r828 5 5 #define INCL_DOSPROCESS 6 6 #define INCL_FSMACROS 7 #include <stdlib.h> 7 8 #include <os2emx.h> 8 9 #include <emx/syscalls.h> -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/sys/sleep2.c
-
Property cvs2svn:cvs-rev
changed from
1.4
to1.5
r827 r828 5 5 #define INCL_FSMACROS 6 6 #include <os2emx.h> 7 #include <stdlib.h> 7 8 #include <emx/syscalls.h> 8 9 #include "syscalls.h" -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/sys/syscalls.h
-
Property cvs2svn:cvs-rev
changed from
1.6
to1.7
r827 r828 188 188 /** @group Init functions 189 189 * @{ */ 190 extern void __init(int fDefaultHeapInHighMem); 190 191 extern int __init_dll(int fDefaultHeapInHighMem); 191 192 extern void volatile _sys_init_ret(void *stack); -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/sys/uflags.c
-
Property cvs2svn:cvs-rev
changed from
1.4
to1.5
r827 r828 2 2 3 3 #include "libc-alias.h" 4 #include <sys/uflags.h> 4 5 #include "syscalls.h" 5 6 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/sys/umask.c
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r827 r828 3 3 #include "libc-alias.h" 4 4 #include <emx/syscalls.h> 5 #include <sys/stat.h> 5 6 #include "syscalls.h" 6 7 7 int _STD(umask) (int pmode)8 mode_t _STD(umask) (int pmode) 8 9 { 9 int old;10 mode_t old; 10 11 11 12 old = _sys_umask; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/libiconv/iconv.c
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r827 r828 19 19 #include <errno.h> 20 20 #include <alloca.h> 21 22 extern void 23 __convert_codepage (const char *cp, UniChar *ucp); 21 #include <emx/locale.h> 24 22 25 23 iconv_t -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/libos2/revision.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r827 r828 5 5 6 6 static char const revision[] = "60"; 7 8 ULONG emx_revision (PCSZ name, LONG argc, const RXSTRING *argv, 9 PCSZ queuename, PRXSTRING retstr); 7 10 8 11 ULONG emx_revision (PCSZ name, LONG argc, const RXSTRING *argv, -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/libos2/safe/SafeDosCreatePipe.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r827 r828 27 27 28 28 29 ULONG APIENTRY SafeDosCreatePipe(PHFILE phfReadHandle, PHFILE phfWriteHandle, ULONG ulPipeSize); 29 30 ULONG APIENTRY SafeDosCreatePipe(PHFILE phfReadHandle, PHFILE phfWriteHandle, ULONG ulPipeSize) 30 31 { -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/libos2/safe/SafeDosDupHandle.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r827 r828 27 27 28 28 29 ULONG APIENTRY SafeDosDupHandle(HFILE hFile, PHFILE phFile); 29 30 ULONG APIENTRY SafeDosDupHandle(HFILE hFile, PHFILE phFile) 30 31 { 31 32 ULONG rc; 32 33 HFILE hf1; 33 PHFILE phf1 ;34 PHFILE phf1 = NULL; 34 35 35 36 if (phFile) -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/libos2/safe/SafeDosForceDelete.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r827 r828 27 27 #include "safe.h" 28 28 29 ULONG APIENTRY SafeDosForceDelete(PCSZ pszFileName); 29 30 ULONG APIENTRY SafeDosForceDelete(PCSZ pszFileName) 30 31 { -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/libos2/safe/SafeDosOpenL.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r827 r828 26 26 #include <os2.h> 27 27 #include "safe.h" 28 29 ULONG APIENTRY SafeDosOpenL(PCSZ pszFileName, PHFILE phFile, PULONG pulAction, 30 LONGLONG llFileSize, ULONG ulAttribute, ULONG ulOpenFlags, ULONG ulOpenMode, 31 PEAOP2 pEABuf); 28 32 29 33 ULONG APIENTRY SafeDosOpenL(PCSZ pszFileName, PHFILE phFile, PULONG pulAction, -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/libos2/safe/SafeDosQueryFHState.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r827 r828 27 27 28 28 29 ULONG APIENTRY SafeDosQueryFHState(HFILE hFile, PULONG pulMode); 29 30 ULONG APIENTRY SafeDosQueryFHState(HFILE hFile, PULONG pulMode) 30 31 { -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/libos2/safe/SafeDosQueryHType.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r827 r828 27 27 28 28 29 ULONG APIENTRY SafeDosQueryHType(HFILE hFile, PULONG pulType, PULONG pulAttr); 29 30 ULONG APIENTRY SafeDosQueryHType(HFILE hFile, PULONG pulType, PULONG pulAttr) 30 31 { -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/libos2/safe/SafeDosQueryNPHState.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r827 r828 27 27 28 28 29 ULONG APIENTRY SafeDosQueryNPHState(HPIPE hpipe, PULONG pulState); 29 30 ULONG APIENTRY SafeDosQueryNPHState(HPIPE hpipe, PULONG pulState) 30 31 { -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/libos2/safe/SafeDosSetDateTime.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r827 r828 28 28 29 29 30 ULONG APIENTRY SafeDosSetDateTime(__const__ DATETIME *pdt); 30 31 ULONG APIENTRY SafeDosSetDateTime(__const__ DATETIME *pdt) 31 32 { -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/libos2/safe/SafeDosSetFilePtr.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r827 r828 27 27 28 28 29 ULONG APIENTRY SafeDosSetFilePtr(HFILE hFile, LONG lOffset, ULONG ulOrigin, PULONG pulPos); 29 30 ULONG APIENTRY SafeDosSetFilePtr(HFILE hFile, LONG lOffset, ULONG ulOrigin, PULONG pulPos) 30 31 { -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/libos2/safe/SafeDosSetFilePtrL.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r827 r828 27 27 28 28 29 ULONG APIENTRY SafeDosSetFilePtrL(HFILE hFile, LONGLONG llOffset, ULONG ulOrigin, PLONGLONG pllPos); 29 30 ULONG APIENTRY SafeDosSetFilePtrL(HFILE hFile, LONGLONG llOffset, ULONG ulOrigin, PLONGLONG pllPos) 30 31 { … … 39 40 } 40 41 41 rc = DosSetFilePtr (hFile, llOffset, ulOrigin, pll1);42 rc = DosSetFilePtrL(hFile, llOffset, ulOrigin, pll1); 42 43 43 44 if (pllPos) -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/libos2/safe/SafeDosWaitChild.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r827 r828 27 27 28 28 29 ULONG APIENTRY SafeDosWaitChild(ULONG ulAction, ULONG ulWait, PRESULTCODES pReturnCodes, PPID ppidOut, PID pidIn); 29 30 ULONG APIENTRY SafeDosWaitChild(ULONG ulAction, ULONG ulWait, PRESULTCODES pReturnCodes, PPID ppidOut, PID pidIn) 30 31 { -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/libos2/safe/SafeDosWaitNPipe.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r827 r828 27 27 #include "safe.h" 28 28 29 ULONG APIENTRY SafeDosWaitNPipe(PCSZ pszName, ULONG ulTimeout); 29 30 ULONG APIENTRY SafeDosWaitNPipe(PCSZ pszName, ULONG ulTimeout) 30 31 { -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.