Warning: main(/www/www/htdocs/style/globals.php) [function.main]: failed to open stream: No such file or directory in /www/www/docs/6.4.1/neutrino/lib_ref/r/resmgr_context_free.html on line 1
Warning: main() [function.include]: Failed opening '/www/www/htdocs/style/globals.php' for inclusion (include_path='.:/www/www/common:/www/www/php/lib/php') in /www/www/docs/6.4.1/neutrino/lib_ref/r/resmgr_context_free.html on line 1
Warning: main(/www/www/htdocs/style/header.php) [function.main]: failed to open stream: No such file or directory in /www/www/docs/6.4.1/neutrino/lib_ref/r/resmgr_context_free.html on line 8
Warning: main() [function.include]: Failed opening '/www/www/htdocs/style/header.php' for inclusion (include_path='.:/www/www/common:/www/www/php/lib/php') in /www/www/docs/6.4.1/neutrino/lib_ref/r/resmgr_context_free.html on line 8
Free a resource-manager context
#include <sys/iofunc.h>
#include <sys/dispatch.h>
void resmgr_context_free( resmgr_context_t * ctp );
- ctp
- A pointer to the
resmgr_context_t
structure that you want to free.
libc
Use the -l c option to
qcc
to link against this library.
This library is usually included automatically.
The resmgr_context_free() function
frees a context allocated by
resmgr_context_alloc().
|
This function is a special case of
dispatch_context_free().
You should use it only when writing a simple resource manager. |
#include <sys/dispatch.h>
#include <stdio.h>
#include <stdlib.h>
int main( int argc, char **argv ) {
dispatch_t *dpp;
resmgr_context_t *ctp;
if ( (dpp = dispatch_create()) == NULL ) {
fprintf( stderr, "%s: Unable to allocate \
dispatch handle.\n",argv[0] );
return EXIT_FAILURE;
}
…
if ( ( ctp = resmgr_context_alloc ( dpp )) == NULL ) {
fprintf( stderr, "Context wasn't allocated.\n" );
return EXIT_FAILURE;
}
…
resmgr_context_free ( ctp );
}
For examples using the dispatch interface, see
dispatch_create(),
message_attach(),
resmgr_attach(), and
thread_pool_create().
QNX Neutrino
Safety: | |
Cancellation point |
Yes |
Interrupt handler |
No |
Signal handler |
No |
Thread |
Yes |
resmgr_context_alloc(),
resmgr_context_t
“Layers in a resource manager”
in the Bones of a Resource Manager chapter of Writing a Resource Manager
Warning: main(/www/www/htdocs/style/footer.php) [function.main]: failed to open stream: No such file or directory in /www/www/docs/6.4.1/neutrino/lib_ref/r/resmgr_context_free.html on line 157
Warning: main() [function.include]: Failed opening '/www/www/htdocs/style/footer.php' for inclusion (include_path='.:/www/www/common:/www/www/php/lib/php') in /www/www/docs/6.4.1/neutrino/lib_ref/r/resmgr_context_free.html on line 157