summaryrefslogtreecommitdiff
path: root/nuttx/sched/signal
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-08-21 11:16:55 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-08-21 11:16:55 -0600
commit4c36b97235c919e8001e08a6120fc86aae9dff3e (patch)
tree8bb5885dfea494406caec7f4738d7349e50ecce6 /nuttx/sched/signal
parent53780a7956316b463230e20a80a6a9b1e3d05bf1 (diff)
downloadpx4-nuttx-4c36b97235c919e8001e08a6120fc86aae9dff3e.tar.gz
px4-nuttx-4c36b97235c919e8001e08a6120fc86aae9dff3e.tar.bz2
px4-nuttx-4c36b97235c919e8001e08a6120fc86aae9dff3e.zip
wdog.h does not contain any application interface, only internal OS interface. Further, it is non-standard. Move wdog.h from include/ to include/nuttx. For the same reason, move the description of the watchdog timer interfaces from the Users Guide to the Porting Guide.
Diffstat (limited to 'nuttx/sched/signal')
-rw-r--r--nuttx/sched/signal/sig_procmask.c7
-rw-r--r--nuttx/sched/signal/sig_releasependingsignal.c6
-rw-r--r--nuttx/sched/signal/sig_removependingsignal.c6
-rw-r--r--nuttx/sched/signal/sig_timedwait.c4
4 files changed, 12 insertions, 11 deletions
diff --git a/nuttx/sched/signal/sig_procmask.c b/nuttx/sched/signal/sig_procmask.c
index c56fdf5aa..861c41047 100644
--- a/nuttx/sched/signal/sig_procmask.c
+++ b/nuttx/sched/signal/sig_procmask.c
@@ -1,7 +1,7 @@
/****************************************************************************
* sched/signal/sig_procmask.c
*
- * Copyright (C) 2007-2009 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2007-2009, 2014 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
@@ -42,12 +42,13 @@
#include <unistd.h>
#include <signal.h>
#include <time.h>
-#include <wdog.h>
#include <assert.h>
#include <debug.h>
#include <sched.h>
-#include <nuttx/kmalloc.h>
+
#include <nuttx/arch.h>
+#include <nuttx/wdog.h>
+#include <nuttx/kmalloc.h>
#include "sched/sched.h"
#include "signal/signal.h"
diff --git a/nuttx/sched/signal/sig_releasependingsignal.c b/nuttx/sched/signal/sig_releasependingsignal.c
index f97009807..17a52eeba 100644
--- a/nuttx/sched/signal/sig_releasependingsignal.c
+++ b/nuttx/sched/signal/sig_releasependingsignal.c
@@ -1,7 +1,7 @@
/************************************************************************
* sched/signal/sig_releasependingsignal.c
*
- * Copyright (C) 2007, 2009 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2007, 2009, 2014 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
@@ -42,13 +42,13 @@
#include <unistd.h>
#include <signal.h>
#include <time.h>
-#include <wdog.h>
#include <assert.h>
#include <debug.h>
#include <sched.h>
-#include <nuttx/kmalloc.h>
#include <nuttx/arch.h>
+#include <nuttx/wdog.h>
+#include <nuttx/kmalloc.h>
#include "signal/signal.h"
diff --git a/nuttx/sched/signal/sig_removependingsignal.c b/nuttx/sched/signal/sig_removependingsignal.c
index 37d7239d2..b34cc6c82 100644
--- a/nuttx/sched/signal/sig_removependingsignal.c
+++ b/nuttx/sched/signal/sig_removependingsignal.c
@@ -1,7 +1,7 @@
/************************************************************************
* sched/signal/sig_removependingsignal.c
*
- * Copyright (C) 2007, 2009, 2013 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2007, 2009, 2013-2014 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
@@ -42,13 +42,13 @@
#include <unistd.h>
#include <signal.h>
#include <time.h>
-#include <wdog.h>
#include <assert.h>
#include <debug.h>
#include <sched.h>
-#include <nuttx/kmalloc.h>
#include <nuttx/arch.h>
+#include <nuttx/wdog.h>
+#include <nuttx/kmalloc.h>
#include "signal/signal.h"
diff --git a/nuttx/sched/signal/sig_timedwait.c b/nuttx/sched/signal/sig_timedwait.c
index e592f8e2e..66d4ccd05 100644
--- a/nuttx/sched/signal/sig_timedwait.c
+++ b/nuttx/sched/signal/sig_timedwait.c
@@ -1,7 +1,7 @@
/****************************************************************************
* sched/signal/sig_timedwait.c
*
- * Copyright (C) 2007-2009, 2012-2013 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2007-2009, 2012-2014 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
@@ -44,13 +44,13 @@
#include <string.h>
#include <signal.h>
#include <time.h>
-#include <wdog.h>
#include <assert.h>
#include <debug.h>
#include <sched.h>
#include <errno.h>
#include <nuttx/arch.h>
+#include <nuttx/wdog.h>
#include "sched/sched.h"
#include "signal/signal.h"