_onexit、_onexit_m
終了時に呼び出されるルーチンを登録します。
_onexit_t _onexit(
_onexit_t function
);
_onexit_t_m _onexit_m(
_onexit_t_m function
);
パラメーター
- function
終了時に呼び出す関数へのポインター。
戻り値
_onexit は 関数への関数ポインターを格納する領域があるか NULL 成功したポインターを返します。
解説
_onexit 関数は、プログラムが正常に終了した場合に呼び出す関数 (function) のアドレスに渡されます。 _onexit に継続的な呼び出しは LIFO (後入れ先出し (LIFO)) 順序で実行される関数のレジスタを作成します。 _onexit に渡された関数はパラメーターを使用できません。
ケースで DllMain が DLL_PROCESS_DETACH に呼び出された後 _onexit が DLL 内から呼び出される場合、ルーチン アンロードする DLL の _onexit の実行に登録されています。
_onexit は Microsoft 拡張機能です。 ANSI 互換では、atexitを使用します。 関数の _onexit_m バージョンは混合モードに使用されます。
必要条件
ルーチン |
必須ヘッダー |
---|---|
_onexit |
<stdlib.h> |
互換性の詳細については、「C ランタイム ライブラリ」の「互換性」を参照してください。
使用例
// crt_onexit.c
#include <stdlib.h>
#include <stdio.h>
/* Prototypes */
int fn1(void), fn2(void), fn3(void), fn4 (void);
int main( void )
{
_onexit( fn1 );
_onexit( fn2 );
_onexit( fn3 );
_onexit( fn4 );
printf( "This is executed first.\n" );
}
int fn1()
{
printf( "next.\n" );
return 0;
}
int fn2()
{
printf( "executed " );
return 0;
}
int fn3()
{
printf( "is " );
return 0;
}
int fn4()
{
printf( "This " );
return 0;
}
出力
This is executed first.
This is executed next.
同等の .NET Framework 関数
System::Diagnostics::Process::Exited