From ab5aeb1be1e7f501388cf4c8915f98efaaef754a Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Mon, 10 May 2021 09:21:03 +0200 Subject: score: Rename _Stack_Free_nothing() Rename _Stack_Free_nothing() in _Objects_Free_nothing() to make it reusable for the message queue buffers. Update #4007. --- cpukit/posix/src/pthreadcreate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpukit/posix/src/pthreadcreate.c') 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 ) { -- cgit v1.2.3