diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html index c19c544a796..6fb5c05cab4 100644 --- a/Documentation/NuttxPortingGuide.html +++ b/Documentation/NuttxPortingGuide.html @@ -5566,6 +5566,7 @@ int kbd_decode(FAR struct lib_instream_s *stream, FAR struct kbd_getstate_s *sta
syslog() and vsyslog()Function Prototypes:
+#include <syslog.h> int syslog(int priority, FAR const IPTR char *format, ...); int vsyslog(int priority, FAR const IPTR char *src, va_list ap);@@ -5585,6 +5586,7 @@ int vsyslog(int priority, FAR const IPTR char *src, va_list ap);
Function Prototype:
+#include <syslog.h> int setlogmask(int mask);
Description: @@ -5614,7 +5616,7 @@ int setlogmask(int mask); Kernel Build: The kernel build is compliant with the POSIX requirement: There will be one mask for for each user process, controlling the SYSLOG output only form that process. There will be a separate mask accessable only in the kernel code to control kernel SYSLOG output.
- These are all standard interfaces as defined at OpenGroup.org. + The above are all standard interfaces as defined at OpenGroup.org. Those interfaces are available for use by application software. The remaining interfaces discussed in this section are non-standard, OS-internal interfaces.
syslog_channel()Function Prototype:
+#include <nuttx/syslog/syslog.h> int syslog_channel(FAR const struct syslog_channel_s *channel);
Description: @@ -5744,6 +5747,7 @@ int syslog_channel(FAR const struct syslog_channel_s *channel);
syslog_initialize()Function Prototype:
+#include <nuttx/syslog/syslog.h> #ifndef CONFIG_ARCH_SYSLOG int syslog_initialize(enum syslog_init_e phase); #else @@ -5936,6 +5940,7 @@ int syslog_initialize(enum syslog_init_e phase);6.4.3.4
syslog_file_channel()Function Prototype:
+#include <nuttx/syslog/syslog.h> #ifdef CONFIG_SYSLOG_FILE int syslog_file_channel(FAR const char *devpath); #endif