sys_create_epoll
Applicability
|
Product |
Supported (√/x) |
|---|---|
|
|
√ |
|
|
√ |
|
|
x |
|
|
√ |
|
|
√ |
Function Usage
Creates an epoll instance for media data processing to allow you to use the epoll programming model to operate the input and output data of the media data processing channel.
Prototype
- C Prototype
1hi_s32 hi_mpi_sys_create_epoll(hi_s32 size, hi_s32 *epoll_fd);
- Python Function
1epoll_fd, ret = acl.himpi.sys_create_epoll(size)
Parameter Description
None.
Return Value Description
|
Return Value |
Description |
|---|---|
|
epoll_fd |
Int, pointer address of the file descriptor of an epoll instance. The number of file descriptors is restricted by the maximum number of files that can be opened at the same time in a task in the Linux OS, which can be viewed by using the ulimit -al command. |
|
ret |
Int, error code.
|
Restrictions
- acl.himpi.sys_create_epoll, acl.himpi.sys_ctl_epoll, acl.himpi.sys_wait_epoll, and acl.himpi.sys_close_epoll must be used in conjunction. Use the epoll programming model to operate the input/output data of DVPP channels.
Atlas inference products : In standard form, only epoll APIs (like acl.himpi.sys_create_epoll) are available, and the epoll functions of the Linux OS are not available.Atlas A2 training products /Atlas A2 inference products : Only epoll APIs (like acl.himpi.sys_create_epoll) are available, and the epoll functions of the Linux OS are not available.Atlas 200I/500 A2 inference products : Only epoll APIs (like acl.himpi.sys_create_epoll) are available, and the epoll functions of the Linux OS are not available.Atlas A3 training products /Atlas A3 inference products : Only pyacl's epoll APIs (like acl.himpi.sys_create_epoll) are available, and the epoll functions of the Linux OS are not available.- The VPC function does not support this API.