/****************************************************************************** ** ** $Id: p11x_unixdll.c,v 1.2 2003/02/13 20:06:42 ghoo Exp $ ** ** Package: PKCS-11 ** Author : Chris Osgood ** License: Copyright (C) 2002 Schlumberger Network Solutions ** ** Purpose: Support for Linux (maybe others) shared library unloading. ** This will automatically get called by the runtime system when the ** library is finalized (just in case the application hasn't closed ** everything down). ** ******************************************************************************/ #ifdef __USE_FINI__ #include "cryptoki.h" void _fini() { C_Finalize(0); } #endif