- Ajuda Scilab
 - Computações Paralelas com PVM
 - pvm
 - pvm_addhosts
 - pvm_barrier
 - pvm_bcast
 - pvm_bufinfo
 - pvm_config
 - pvm_delhosts
 - pvm_error
 - pvm_exit
 - pvm_f772sci
 - pvm_get_timer
 - pvm_getinst
 - pvm_gettid
 - pvm_gsize
 - pvm_halt
 - pvm_joingroup
 - pvm_kill
 - pvm_lvgroup
 - pvm_mytid
 - pvm_parent
 - pvm_probe
 - pvm_recv
 - pvm_reduce
 - pvm_sci2f77
 - pvm_send
 - pvm_set_timer
 - pvm_spawn
 - pvm_spawn_independent
 - pvm_start
 - pvm_tasks
 - pvm_tidtohost
 - pvmd3
 
Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
However, this page did not exist in the previous stable version.
pvm_bufinfo
Returns information about a message buffer.
Calling Sequence
[bytes, msgtag, tid, info] = pvm_bufinfo(bufid)
Arguments
- bufid
 integer, specifying a particular message buffer identifier.
- bytes
 integer, size of the message in bytes (not very useful inside scilab).
- msgtag
 integer, label of the message. Useful when the message was received with a wildcard msgtag.
- tid
 integer, task ID of the source of the message.
- info
 integer, status code returned by the routine. Values less than zero indicate an error.
Description
pvm_bufinfo returns information   about  the requested   message
    buffer.  Typically it is  used   to determine  facts  about the   last
    received   message  such  as   its size  or   source. pvm_bufinfo is
    especially useful when an application is  able to receive any incoming
    message, and the action taken depends on the source tid and the msgtag
    associated  with the message that comes  in first.
The returned value infowill be zero if 
    pvm_bufinfo is successful and will be 
    will be < 0 if some error occurs.
See Also
- pvm_recv — receive a message.
 
| << pvm_bcast | Computações Paralelas com PVM | pvm_config >> |