summaryrefslogtreecommitdiff
path: root/nuttx/arch
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/arch')
-rw-r--r--nuttx/arch/8051/src/up_exit.c2
-rw-r--r--nuttx/arch/arm/src/common/up_exit.c2
-rw-r--r--nuttx/arch/avr/src/common/up_exit.c2
-rw-r--r--nuttx/arch/hc/src/common/up_exit.c2
-rw-r--r--nuttx/arch/mips/src/common/up_exit.c2
-rw-r--r--nuttx/arch/rgmp/src/nuttx.c2
-rw-r--r--nuttx/arch/sh/src/common/up_exit.c2
-rw-r--r--nuttx/arch/sim/src/up_exit.c2
-rw-r--r--nuttx/arch/x86/src/common/up_exit.c2
-rw-r--r--nuttx/arch/z16/src/common/up_exit.c2
-rw-r--r--nuttx/arch/z80/src/common/up_exit.c2
11 files changed, 11 insertions, 11 deletions
diff --git a/nuttx/arch/8051/src/up_exit.c b/nuttx/arch/8051/src/up_exit.c
index c96467bf9..31d8c99ab 100644
--- a/nuttx/arch/8051/src/up_exit.c
+++ b/nuttx/arch/8051/src/up_exit.c
@@ -89,7 +89,7 @@ void _exit(int status)
/* Destroy the task at the head of the ready to run list. */
- (void)task_deletecurrent();
+ (void)task_exit();
/* Now, perform the context switch to the new ready-to-run task at the
* head of the list.
diff --git a/nuttx/arch/arm/src/common/up_exit.c b/nuttx/arch/arm/src/common/up_exit.c
index 76bf4e0dd..95a71f832 100644
--- a/nuttx/arch/arm/src/common/up_exit.c
+++ b/nuttx/arch/arm/src/common/up_exit.c
@@ -153,7 +153,7 @@ void _exit(int status)
/* Destroy the task at the head of the ready to run list. */
- (void)task_deletecurrent();
+ (void)task_exit();
/* Now, perform the context switch to the new ready-to-run task at the
* head of the list.
diff --git a/nuttx/arch/avr/src/common/up_exit.c b/nuttx/arch/avr/src/common/up_exit.c
index 3b316123b..93ec7c487 100644
--- a/nuttx/arch/avr/src/common/up_exit.c
+++ b/nuttx/arch/avr/src/common/up_exit.c
@@ -153,7 +153,7 @@ void _exit(int status)
/* Destroy the task at the head of the ready to run list. */
- (void)task_deletecurrent();
+ (void)task_exit();
/* Now, perform the context switch to the new ready-to-run task at the
* head of the list.
diff --git a/nuttx/arch/hc/src/common/up_exit.c b/nuttx/arch/hc/src/common/up_exit.c
index 9fad697f1..c71bbafd1 100644
--- a/nuttx/arch/hc/src/common/up_exit.c
+++ b/nuttx/arch/hc/src/common/up_exit.c
@@ -153,7 +153,7 @@ void _exit(int status)
/* Destroy the task at the head of the ready to run list. */
- (void)task_deletecurrent();
+ (void)task_exit();
/* Now, perform the context switch to the new ready-to-run task at the
* head of the list.
diff --git a/nuttx/arch/mips/src/common/up_exit.c b/nuttx/arch/mips/src/common/up_exit.c
index a5746f8aa..8791fa40b 100644
--- a/nuttx/arch/mips/src/common/up_exit.c
+++ b/nuttx/arch/mips/src/common/up_exit.c
@@ -155,7 +155,7 @@ void _exit(int status)
/* Destroy the task at the head of the ready to run list. */
- (void)task_deletecurrent();
+ (void)task_exit();
/* Now, perform the context switch to the new ready-to-run task at the
* head of the list.
diff --git a/nuttx/arch/rgmp/src/nuttx.c b/nuttx/arch/rgmp/src/nuttx.c
index da67ac214..a4f713be6 100644
--- a/nuttx/arch/rgmp/src/nuttx.c
+++ b/nuttx/arch/rgmp/src/nuttx.c
@@ -422,7 +422,7 @@ void _exit(int status)
/* Destroy the task at the head of the ready to run list. */
- (void)task_deletecurrent();
+ (void)task_exit();
/* Now, perform the context switch to the new ready-to-run task at the
* head of the list.
diff --git a/nuttx/arch/sh/src/common/up_exit.c b/nuttx/arch/sh/src/common/up_exit.c
index 31c8e0404..e454d1b64 100644
--- a/nuttx/arch/sh/src/common/up_exit.c
+++ b/nuttx/arch/sh/src/common/up_exit.c
@@ -154,7 +154,7 @@ void _exit(int status)
/* Destroy the task at the head of the ready to run list. */
- (void)task_deletecurrent();
+ (void)task_exit();
/* Now, perform the context switch to the new ready-to-run task at the
* head of the list.
diff --git a/nuttx/arch/sim/src/up_exit.c b/nuttx/arch/sim/src/up_exit.c
index 348c4a9e6..7d7d4d041 100644
--- a/nuttx/arch/sim/src/up_exit.c
+++ b/nuttx/arch/sim/src/up_exit.c
@@ -82,7 +82,7 @@ void _exit(int status)
/* Destroy the task at the head of the ready to run list. */
- (void)task_deletecurrent();
+ (void)task_exit();
/* Now, perform the context switch to the new ready-to-run task at the
* head of the list.
diff --git a/nuttx/arch/x86/src/common/up_exit.c b/nuttx/arch/x86/src/common/up_exit.c
index 2aa21f352..9b0c0cbe1 100644
--- a/nuttx/arch/x86/src/common/up_exit.c
+++ b/nuttx/arch/x86/src/common/up_exit.c
@@ -153,7 +153,7 @@ void _exit(int status)
/* Destroy the task at the head of the ready to run list. */
- (void)task_deletecurrent();
+ (void)task_exit();
/* Now, perform the context switch to the new ready-to-run task at the
* head of the list.
diff --git a/nuttx/arch/z16/src/common/up_exit.c b/nuttx/arch/z16/src/common/up_exit.c
index 59764484f..e4c6dcf9c 100644
--- a/nuttx/arch/z16/src/common/up_exit.c
+++ b/nuttx/arch/z16/src/common/up_exit.c
@@ -155,7 +155,7 @@ void _exit(int status)
/* Destroy the task at the head of the ready to run list. */
- (void)task_deletecurrent();
+ (void)task_exit();
/* Now, perform the context switch to the new ready-to-run task at the
* head of the list.
diff --git a/nuttx/arch/z80/src/common/up_exit.c b/nuttx/arch/z80/src/common/up_exit.c
index c738202a9..aa578f29e 100644
--- a/nuttx/arch/z80/src/common/up_exit.c
+++ b/nuttx/arch/z80/src/common/up_exit.c
@@ -156,7 +156,7 @@ void _exit(int status)
/* Destroy the task at the head of the ready to run list. */
- (void)task_deletecurrent();
+ (void)task_exit();
/* Now, perform the context switch to the new ready-to-run task at the
* head of the list.