summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/pthreadcreate.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2021-05-10 09:21:03 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-05-11 07:45:58 +0200
commitab5aeb1be1e7f501388cf4c8915f98efaaef754a (patch)
tree3dde1935aa45abb441b6a250c5447ff44ad222d6 /cpukit/posix/src/pthreadcreate.c
parentrtems: rtems_scheduler_get_processor_set() docs (diff)
downloadrtems-ab5aeb1be1e7f501388cf4c8915f98efaaef754a.tar.bz2
score: Rename _Stack_Free_nothing()
Rename _Stack_Free_nothing() in _Objects_Free_nothing() to make it reusable for the message queue buffers. Update #4007.
Diffstat (limited to 'cpukit/posix/src/pthreadcreate.c')
-rw-r--r--cpukit/posix/src/pthreadcreate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/posix/src/pthreadcreate.c b/cpukit/posix/src/pthreadcreate.c
index 055d304699..9474d07032 100644
--- a/cpukit/posix/src/pthreadcreate.c
+++ b/cpukit/posix/src/pthreadcreate.c
@@ -221,7 +221,7 @@ int pthread_create(
config.stack_free = _Stack_Free;
config.stack_area = _Stack_Allocate( config.stack_size );
} else {
- config.stack_free = _Stack_Free_nothing;
+ config.stack_free = _Objects_Free_nothing;
}
if ( config.stack_area == NULL ) {