forked from Imagelibrary/rtems
2002-04-16 Chris Johns <ccj@acm.org>
* src/threadinitialize.c: Per PR181, clear the array of user extension pointers. This lets user extensions that have hooked the switch handler know if a task has been processed by the user extension before. If a user extension is created after a task is started it may not know it.
This commit is contained in:
@@ -1,3 +1,10 @@
|
||||
2002-04-16 Chris Johns <ccj@acm.org>
|
||||
|
||||
* src/threadinitialize.c: Per PR181, clear the array of user extension
|
||||
pointers. This lets user extensions that have hooked the switch handler
|
||||
know if a task has been processed by the user extension before. If a
|
||||
user extension is created after a task is started it may not know it.
|
||||
|
||||
2002-04-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||
|
||||
* include/rtems/system.h: Add i386 to multilib-able targets.
|
||||
|
||||
@@ -138,6 +138,20 @@ boolean _Thread_Initialize(
|
||||
|
||||
the_thread->extensions = (void **) extensions_area;
|
||||
|
||||
/*
|
||||
* Clear the extensions area so extension users can determine
|
||||
* if they are linked to the thread. An extension user may
|
||||
* create the extension long after tasks have been created
|
||||
* so they cannot rely on the thread create user extension
|
||||
* call.
|
||||
*/
|
||||
|
||||
if ( the_thread->extensions ) {
|
||||
int i;
|
||||
for ( i = 0; i < (_Thread_Maximum_extensions + 1); i++ )
|
||||
the_thread->extensions[i] = NULL;
|
||||
}
|
||||
|
||||
/*
|
||||
* General initialization
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user