Changeset 439 for branches/thune
- Timestamp:
- 07/25/07 22:34:49 (16 months ago)
- Location:
- branches/thune/thread_safe
- Files:
-
- 3 modified
-
files.c (modified) (1 diff)
-
win32/os.c (modified) (1 diff)
-
win32/os.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/thune/thread_safe/files.c
r432 r439 959 959 960 960 { 961 UCell* val = ur_makePort( dev, tos );961 UCell* val = ur_makePort( ut, dev, tos ); 962 962 if( val ) 963 963 { -
branches/thune/thread_safe/win32/os.c
r432 r439 229 229 cell = ur_appendCell(blk, UT_WORD); 230 230 if( info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY ) 231 atom = UR_INTERN( "dir", 3 );231 atom = ur_intern( "dir", 3 ); 232 232 else 233 atom = UR_INTERN( "file", 4 );233 atom = ur_intern( "file", 4 ); 234 234 ur_setUnbound(cell, atom); 235 235 -
branches/thune/thread_safe/win32/os.h
r431 r439 11 11 #include <stdlib.h> 12 12 #include <string.h> 13 #include <windows.h> 13 14 14 15
