PostgreSQL解読室:
MemoryContextIsValid()/postgresql-8.1.4
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
単語検索
|
最終更新
|
ヘルプ
]
開始行:
このページを編集する際は、[[編集に関する方針]]に従ってく...
*概要 [#gb1c1650]
-対象:8.1.4
-言語:C
-宣言・定義:[[postgresql-8.1.4/src/include/nodes/memnode...
-ポインタcontextを構造体[[Node/postgresql-8.1.4]]型のポイ...
*引数 [#mc94d888]
-context -- ポインタ
*実装 [#jfb689fd]
#define MemoryContextIsValid(context) \
((context) != NULL && \
(IsA((context), AllocSetContext)))
-[[IsA()/postgresql-8.1.4]] -- 以下の2つが同じかどうかを...
--T_AllocSetContext
--ポインタ(context)を構造体[[Node/postgresql-8.1.4]]型の...
*呼出元 [#w37b9a83]
-[[MemoryContextReset()/postgresql-8.1.4]]
*備考 [#y70c2b74]
/*
* MemoryContextIsValid
* True iff memory context is valid.
*
* Add new context types to the set accepted by this macro.
*/
*履歴 [#jcfde0eb]
-作者:[[testnoda/ページ作者]]
-日付:2007/2/25
|更新日|更新者|更新内容|
||||
*コメント [#fe125438]
#comment
終了行:
このページを編集する際は、[[編集に関する方針]]に従ってく...
*概要 [#gb1c1650]
-対象:8.1.4
-言語:C
-宣言・定義:[[postgresql-8.1.4/src/include/nodes/memnode...
-ポインタcontextを構造体[[Node/postgresql-8.1.4]]型のポイ...
*引数 [#mc94d888]
-context -- ポインタ
*実装 [#jfb689fd]
#define MemoryContextIsValid(context) \
((context) != NULL && \
(IsA((context), AllocSetContext)))
-[[IsA()/postgresql-8.1.4]] -- 以下の2つが同じかどうかを...
--T_AllocSetContext
--ポインタ(context)を構造体[[Node/postgresql-8.1.4]]型の...
*呼出元 [#w37b9a83]
-[[MemoryContextReset()/postgresql-8.1.4]]
*備考 [#y70c2b74]
/*
* MemoryContextIsValid
* True iff memory context is valid.
*
* Add new context types to the set accepted by this macro.
*/
*履歴 [#jcfde0eb]
-作者:[[testnoda/ページ作者]]
-日付:2007/2/25
|更新日|更新者|更新内容|
||||
*コメント [#fe125438]
#comment
ページ名: