
|
Go to the first, previous, next, last section, table of contents.
- ox_get(number)
-
:: プロセス識別子 number のプロセスからデータを受信する.
- return
-
受信データ
- number
-
数(プロセス識別子)
-
プロセス識別子 number のプロセスからデータを受信する. 既に
ストリーム上にデータがあることを仮定している.
-
ox_push_cmd と組み合わせて用いる.
-
ox_pop_cmo , ox_pop_local は, ox_push_cmd と
ox_get の組み合わせで実現されている.
[11] ox_push_cmo(0,123);
0
[12] ox_push_cmd(0,262); /* 262=OX_popCMO */
0
[13] ox_get(0);
123
- 参照
-
section
ox_pop_cmo , ox_pop_local , section ox_push_cmd , ox_sync
Go to the first, previous, next, last section, table of contents.
|