SIM: Register the schedule note driver if enabled

This commit is contained in:
Gregory Nutt 2016-03-17 14:43:29 -06:00
parent 8fbe5b6243
commit 82c58eb609

View File

@ -42,6 +42,7 @@
#include <debug.h> #include <debug.h>
#include <nuttx/arch.h> #include <nuttx/arch.h>
#include <nuttx/sched_note.h>
#include <nuttx/fs/fs.h> #include <nuttx/fs/fs.h>
#include <nuttx/fs/loop.h> #include <nuttx/fs/loop.h>
#include <nuttx/fs/ioctl.h> #include <nuttx/fs/ioctl.h>
@ -136,18 +137,23 @@ void up_initialize(void)
/* Register devices */ /* Register devices */
#if defined(CONFIG_DEV_NULL) #if defined(CONFIG_DEV_NULL)
devnull_register(); /* Standard /dev/null */ devnull_register(); /* Standard /dev/null */
#endif #endif
#if defined(CONFIG_DEV_ZERO) #if defined(CONFIG_DEV_ZERO)
devzero_register(); /* Standard /dev/zero */ devzero_register(); /* Standard /dev/zero */
#endif #endif
#if defined(CONFIG_DEV_LOOP) #if defined(CONFIG_DEV_LOOP)
loop_register(); /* Standard /dev/loop */ loop_register(); /* Standard /dev/loop */
#endif #endif
#endif /* CONFIG_NFILE_DESCRIPTORS */ #endif /* CONFIG_NFILE_DESCRIPTORS */
#if defined(CONFIG_SCHED_INSTRUMENTATION_BUFFER) && \
defined(CONFIG_DRIVER_NOTE)
note_register(); /* Non-standard /dev/note */
#endif
#if defined(USE_DEVCONSOLE) #if defined(USE_DEVCONSOLE)
/* Start the sumulated UART device */ /* Start the sumulated UART device */