summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/include/rtems/posix/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/exec/posix/include/rtems/posix/config.h')
-rw-r--r--c/src/exec/posix/include/rtems/posix/config.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/c/src/exec/posix/include/rtems/posix/config.h b/c/src/exec/posix/include/rtems/posix/config.h
index 1c0305652b..dee2cd1c2a 100644
--- a/c/src/exec/posix/include/rtems/posix/config.h
+++ b/c/src/exec/posix/include/rtems/posix/config.h
@@ -32,8 +32,14 @@ extern "C" {
* + required number of each object type
*/
-/* XXX fix me */
-typedef int posix_initialization_tasks_table;
+/*
+ * For now, we are only allowing the user to specify the entry point
+ * for posix initialization threads.
+ */
+
+typedef struct {
+ void *(*entry)(void *);
+} posix_initialization_tasks_table;
typedef struct {
int maximum_threads;