mirror of
https://github.com/apache/nuttx.git
synced 2026-08-08 22:17:18 +00:00
fs/poll: change format for type pollevent_t
complete the following commits: commitd87cf8d4caAuthor: Jiuzhu Dong <dongjiuzhu1@xiaomi.com> Date: Fri Apr 1 20:59:55 2022 +0800 fs/poll: change format for type pollevent_t Signed-off-by: Jiuzhu Dong <dongjiuzhu1@xiaomi.com> commitd535943a69Author: Jiuzhu Dong <dongjiuzhu1@xiaomi.com> Date: Fri Apr 1 17:49:10 2022 +0800 fs/epoll: change type of eventset from uint8_t to uint32_t to support EPOLLONESHOT and so on. Signed-off-by: Jiuzhu Dong <dongjiuzhu1@xiaomi.com> Signed-off-by: chao.an <anchao@xiaomi.com>
This commit is contained in:
parent
e93100cb4d
commit
ba5320c36f
2 changed files with 2 additions and 2 deletions
|
|
@ -124,7 +124,7 @@ static void lirc_pollnotify(FAR struct lirc_fh_s *fh,
|
|||
|
||||
if (fh->fd->revents != 0)
|
||||
{
|
||||
rcinfo("Report events: %02x\n", fh->fd->revents);
|
||||
rcinfo("Report events: %08" PRIx32 "\n", fh->fd->revents);
|
||||
|
||||
nxsem_get_value(fh->fd->sem, &semcount);
|
||||
if (semcount < 1)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue