forked from PX4/NuttX
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move a few files in sched/ that did not seem to have a home to sched/…
…signal and sched/task
- Loading branch information
1 parent
23a334c
commit 224ee05
Showing
8 changed files
with
20 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/**************************************************************************** | ||
* sched/nanosleep.c | ||
* sched/signal/sig/nanosleep.c | ||
* | ||
* Copyright (C) 2013 Gregory Nutt. All rights reserved. | ||
* Author: Gregory Nutt <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/**************************************************************************** | ||
* sched/atexit.c | ||
* sched/task/task_atexit.c | ||
* | ||
* Copyright (C) 2007, 2009, 2011-2013 Gregory Nutt. All rights reserved. | ||
* Author: Gregory Nutt <[email protected]> | ||
|
@@ -48,6 +48,7 @@ | |
#include <nuttx/fs/fs.h> | ||
|
||
#include "os_internal.h" | ||
#include "task/task.h" | ||
|
||
#ifdef CONFIG_SCHED_ATEXIT | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/************************************************************************ | ||
* sched/getpid.c | ||
* sched/task/task_getpid.c | ||
* | ||
* Copyright (C) 2007, 2009, 2014 Gregory Nutt. All rights reserved. | ||
* Author: Gregory Nutt <[email protected]> | ||
|
@@ -42,6 +42,7 @@ | |
#include <sched.h> | ||
|
||
#include "os_internal.h" | ||
#include "task/task.h" | ||
|
||
/************************************************************************ | ||
* Pre-processor Definitions | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/**************************************************************************** | ||
* sched/on_exit.c | ||
* sched/task/task_onexit.c | ||
* | ||
* Copyright (C) 2012-2013 Gregory Nutt. All rights reserved. | ||
* Author: Gregory Nutt <[email protected]> | ||
|
@@ -48,6 +48,7 @@ | |
#include <nuttx/fs/fs.h> | ||
|
||
#include "os_internal.h" | ||
#include "task/task.h" | ||
|
||
#ifdef CONFIG_SCHED_ONEXIT | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/************************************************************************ | ||
* sched/prctl.c | ||
* sched/task/task_prctl.c | ||
* | ||
* Copyright (C) 2012-2013 Gregory Nutt. All rights reserved. | ||
* Author: Gregory Nutt <[email protected]> | ||
|
@@ -48,6 +48,7 @@ | |
#include <nuttx/sched.h> | ||
|
||
#include "os_internal.h" | ||
#include "task/task.h" | ||
|
||
/************************************************************************ | ||
* Private Functions | ||
|