Changeset f362fa7 in rtems
- Timestamp:
- 02/23/00 15:59:20 (24 years ago)
- Children:
- 7209360a
- Parents:
- 06383557
- Location:
- c/src/exec
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/itron/src/cre_tsk.c
r06383557 rf362fa7 31 31 { 32 32 register Thread_Control *the_thread; 33 char *name = "trn";34 33 boolean status; 35 34 Priority_Control core_priority; … … 91 90 NULL, /* no budget algorithm callout */ 92 91 0, 93 &name92 NULL 94 93 ); 95 94 -
c/src/exec/posix/src/pthread.c
r06383557 rf362fa7 357 357 maximum_pthreads, 358 358 sizeof( Thread_Control ), 359 TRUE,360 5, /* length is arbitrary for now */359 FALSE, 360 0, /* length is arbitrary for now */ 361 361 TRUE /* this class is threads */ 362 362 ); -
c/src/exec/posix/src/pthreadcreate.c
r06383557 rf362fa7 35 35 boolean status; 36 36 Thread_Control *the_thread; 37 char *default_name = "psx";38 37 POSIX_API_Control *api; 39 38 int schedpolicy = SCHED_RR; … … 178 177 budget_callout, 179 178 0, /* isr level */ 180 &default_name/* posix threads don't have a name */179 NULL /* posix threads don't have a name */ 181 180 ); 182 181
Note: See TracChangeset
for help on using the changeset viewer.