Changeset 421 for branches/thune
- Timestamp:
- 06/30/07 08:14:02 (17 months ago)
- Location:
- branches/thune/thread_safe
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/thune/thread_safe/urlan.c
r418 r421 97 97 "port!", 98 98 "struct!", 99 "component!", 100 "plug!" 99 "component!" 101 100 }; 102 101 … … 251 250 FIXED_ATOM( "devices", 7, UR_ATOM_DEVICES ) 252 251 FIXED_ATOM( "os", 2, UR_ATOM_OS ) 252 FIXED_ATOM( "self", 4, UR_ATOM_SELF ) 253 253 254 254 // If/ opcode … … 484 484 // Init main thread. 485 485 486 ut = ur_threadMake( env, 512, 1024 );487 488 486 if( mutexInit( env->mutex ) == -1 ) 489 487 { … … 493 491 return UR_EVAL_ERROR; 494 492 } 493 494 ut = ur_threadMake( env, 512, 1024 ); 495 495 496 496 // Make hold & global context blocks. … … 832 832 833 833 /** 834 ur_resolvePath Tis provided as a fast but still convenient method of834 ur_resolvePath is provided as a fast but still convenient method of 835 835 resolving paths from C code. 836 836 -
branches/thune/thread_safe/urlan.h
r418 r421 79 79 #define UT_STRUCT 37 80 80 #define UT_COMPONENT 38 81 #define UT_PLUG 39 82 83 #define UT_BI_COUNT 40 81 82 #define UT_BI_COUNT 39 84 83 #define UT_MAX 64 85 84 #define UT_TYPEMASK 99 … … 204 203 205 204 205 #if 0 206 206 typedef struct 207 207 { … … 214 214 } 215 215 UCellComponent; 216 #endif 216 217 217 218 … … 371 372 UCellError err; 372 373 UCellCode code; 373 UCellComponent comp;374 //UCellComponent comp; 374 375 } 375 376 UCell;
