iofunc_attr_init(), iofunc_attr_init_sized()
Initialize the per-name attribute structure associated with a device
Synopsis:
#include <sys/iofunc.h>
void iofunc_attr_init_sized ( iofunc_attr_t *attr,
mode_t mode,
iofunc_attr_t *dattr,
struct _client_info *info,
size_t size );
#define iofunc_attr_init(attr, mode, dattr, info) ...
Arguments:
- attr
- A pointer to the iofunc_attr_t structure that you want to initialize.
- mode
- The type and access permissions that you want to use for the resource.
For more information, see the entry for
struct stat.
In general, there isn't a
correct
set of permissions to use; you should restrict them according to what you want other processes and users to be able to do with your resource manager. - dattr
- NULL, or a pointer to a iofunc_attr_t structure that you want to use to initialize the structure pointed to by attr.
- info
- NULL, or a pointer to a _client_info structure that contains the information about a client connection. For information about this structure, see ConnectClientInfo().
- size
- (iofunc_attr_init_sized() only) The size of the attributes structure;
for iofunc_attr_init(), this is
sizeof(iofunc_attr_t)
.
Library:
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
Description:
The iofunc_attr_init() and iofunc_attr_init_sized() functions initialize the per-name attributes that a resource manager associates with a device.
These functions initialize the iofunc_attr_t structure pointed to by attr with the information derived from the optional dattr, the mode, and the user and group IDs from the optional info client information structure.
The count, rcount, wcount, rlocks and wlocks counters are reset to zero.
Classification:
Safety: | |
---|---|
Cancellation point | No |
Signal handler | Yes |
Thread | Yes |