Changeset 20b5ca1 in rtems-libbsd
- Timestamp:
- 05/30/12 16:49:04 (11 years ago)
- Branches:
- 4.11, 5, 5-freebsd-12, 6-freebsd-12, freebsd-9.3, master
- Children:
- 3cde755
- Parents:
- b9fa3c9
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
rb9fa3c9 r20b5ca1 371 371 C_FILES += freebsd/libkern/inet_ntoa.c 372 372 C_FILES += freebsd/kern/kern_prot.c 373 C_FILES += freebsd/kern/kern_proc.c 373 374 C_FILES += freebsd/kern/kern_time.c 374 375 C_FILES += freebsd/kern/kern_event.c -
freebsd-to-rtems.py
rb9fa3c9 r20b5ca1 1222 1222 'libkern/inet_ntoa.c', 1223 1223 'kern/kern_prot.c', 1224 'kern/kern_proc.c', 1224 1225 'kern/kern_time.c', 1225 1226 'kern/kern_event.c', -
freebsd/kern/init_main.c
rb9fa3c9 r20b5ca1 184 184 #endif /* __rtems__ */ 185 185 186 #define VERBOSE_SYSINIT 186 187 #if defined(VERBOSE_SYSINIT) 187 188 int last; … … 394 395 .sv_syscallnames = NULL, 395 396 }; 397 #endif /* __rtems__ */ 396 398 397 399 /* … … 412 414 proc0_init(void *dummy __unused) 413 415 { 416 #ifndef __rtems__ 414 417 struct proc *p; 415 418 unsigned i; … … 425 428 p->p_magic = P_MAGIC; 426 429 p->p_osrel = osreldate; 430 #endif /* __rtems__ */ 427 431 428 432 /* … … 430 434 */ 431 435 procinit(); /* set up proc zone */ 436 #ifndef __rtems__ 432 437 threadinit(); /* set up UMA zones */ 433 438 … … 559 564 */ 560 565 (void)chgproccnt(p->p_ucred->cr_ruidinfo, 1, 0); 566 #endif /* __rtems__ */ 561 567 } 562 568 SYSINIT(p0init, SI_SUB_INTRINSIC, SI_ORDER_FIRST, proc0_init, NULL); 563 569 570 #ifndef __rtems__ 564 571 /* ARGSUSED*/ 565 572 static void
Note: See TracChangeset
for help on using the changeset viewer.