summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJennifer Averett <jennifer.averett@oarcorp.com>2012-05-30 11:54:23 -0500
committerJennifer Averett <jennifer.averett@oarcorp.com>2012-05-30 11:54:23 -0500
commit8aecdc0725a2b9bf1e50c99f8a7650183476deff (patch)
treea39e78e6d925ba464b91a51387e7a88c89f67273
parentIncreased maxproc from 6 to 32 (diff)
downloadrtems-libbsd-8aecdc0725a2b9bf1e50c99f8a7650183476deff.tar.bz2
Resolved an initialization order issue in link01.exe
Note that the order may still need to be adjusted.
-rw-r--r--rtemsbsd/src/rtems-bsd-thread0-ucred.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rtemsbsd/src/rtems-bsd-thread0-ucred.c b/rtemsbsd/src/rtems-bsd-thread0-ucred.c
index c3e17f9f..4ff61ea4 100644
--- a/rtemsbsd/src/rtems-bsd-thread0-ucred.c
+++ b/rtemsbsd/src/rtems-bsd-thread0-ucred.c
@@ -50,4 +50,4 @@ static void rtems_bsd_thread0_ucred_init(void *arg)
rtems_bsd_thread0_ucred->cr_prison = &prison0;
}
-SYSINIT(cpu, SI_SUB_CPU, SI_ORDER_FIRST, rtems_bsd_thread0_ucred_init, NULL);
+SYSINIT(cpu, SI_SUB_INTRINSIC, SI_ORDER_SECOND, rtems_bsd_thread0_ucred_init, NULL);