Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[libc][POSIX][poll.h] implement poll #125118

Merged
merged 10 commits into from
Feb 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions libc/config/linux/aarch64/entrypoints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ set(TARGET_LIBC_ENTRYPOINTS
libc.src.fcntl.open
libc.src.fcntl.openat

# poll.h entrypoints
libc.src.poll.poll

# sched.h entrypoints
libc.src.sched.sched_get_priority_max
libc.src.sched.sched_get_priority_min
Expand Down
9 changes: 5 additions & 4 deletions libc/config/linux/aarch64/headers.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,30 +8,31 @@ set(TARGET_PUBLIC_HEADERS
libc.include.features
libc.include.fenv
libc.include.float
libc.include.stdint
libc.include.inttypes
libc.include.limits
libc.include.link
libc.include.malloc
libc.include.math
libc.include.poll
libc.include.pthread
libc.include.search
libc.include.signal
libc.include.stdckdint
libc.include.stdbit
libc.include.stdckdint
libc.include.stdint
libc.include.stdio
libc.include.stdlib
libc.include.string
libc.include.strings
libc.include.search
libc.include.sys_mman
libc.include.sys_socket
libc.include.sys_syscall
libc.include.sys_time
libc.include.threads
libc.include.time
libc.include.uchar
libc.include.unistd
libc.include.wchar
libc.include.uchar

libc.include.sys_ioctl
# Disabled due to epoll_wait syscalls not being available on this platform.
Expand Down
3 changes: 3 additions & 0 deletions libc/config/linux/arm/entrypoints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ set(TARGET_LIBC_ENTRYPOINTS
# errno.h entrypoints
libc.src.errno.errno

# poll.h entrypoints
libc.src.poll.poll

# string.h entrypoints
libc.src.string.memccpy
libc.src.string.memchr
Expand Down
3 changes: 3 additions & 0 deletions libc/config/linux/riscv/entrypoints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ set(TARGET_LIBC_ENTRYPOINTS
libc.src.fcntl.open
libc.src.fcntl.openat

# poll.h entrypoints
libc.src.poll.poll

# sched.h entrypoints
libc.src.sched.sched_get_priority_max
libc.src.sched.sched_get_priority_min
Expand Down
3 changes: 3 additions & 0 deletions libc/config/linux/x86_64/entrypoints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ set(TARGET_LIBC_ENTRYPOINTS
libc.src.fcntl.open
libc.src.fcntl.openat

# poll.h entrypoints
libc.src.poll.poll

# sched.h entrypoints
libc.src.sched.sched_get_priority_max
libc.src.sched.sched_get_priority_min
Expand Down
27 changes: 13 additions & 14 deletions libc/config/linux/x86_64/headers.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
set(TARGET_PUBLIC_HEADERS
libc.include.arpa_inet
libc.include.assert
libc.include.complex
libc.include.ctype
Expand All @@ -10,35 +11,27 @@ set(TARGET_PUBLIC_HEADERS
libc.include.features
libc.include.fenv
libc.include.float
libc.include.stdint
libc.include.inttypes
libc.include.limits
libc.include.link
libc.include.locale
libc.include.malloc
libc.include.math
libc.include.poll
libc.include.pthread
libc.include.sched
libc.include.search
libc.include.setjmp
libc.include.signal
libc.include.spawn
libc.include.setjmp
libc.include.stdckdint
libc.include.stdbit
libc.include.stdckdint
libc.include.stdfix
libc.include.stdint
libc.include.stdio
libc.include.stdlib
libc.include.string
libc.include.strings
libc.include.search
libc.include.termios
libc.include.threads
libc.include.time
libc.include.unistd
libc.include.wchar
libc.include.uchar
libc.include.locale

libc.include.arpa_inet

libc.include.sys_auxv
libc.include.sys_epoll
libc.include.sys_ioctl
Expand All @@ -56,4 +49,10 @@ set(TARGET_PUBLIC_HEADERS
libc.include.sys_types
libc.include.sys_utsname
libc.include.sys_wait
libc.include.termios
libc.include.threads
libc.include.time
libc.include.uchar
libc.include.unistd
libc.include.wchar
)
16 changes: 16 additions & 0 deletions libc/hdr/types/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -342,3 +342,19 @@ add_proxy_header_library(
libc.include.llvm-libc-types.struct_iovec
libc.include.sys_uio
)

add_proxy_header_library(
nfds_t
HDRS
nfds_t.h
FULL_BUILD_DEPENDS
libc.include.llvm-libc-types.nfds_t
)

add_proxy_header_library(
struct_pollfd
HDRS
struct_pollfd.h
FULL_BUILD_DEPENDS
libc.include.llvm-libc-types.struct_pollfd
)
23 changes: 23 additions & 0 deletions libc/hdr/types/nfds_t.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
//===-- Definition of nfds_t ----------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_LIBC_HDR_TYPES_NFDS_T_H
#define LLVM_LIBC_HDR_TYPES_NFDS_T_H

#ifdef LIBC_FULL_BUILD

#include "include/llvm-libc-types/nfds_t.h"

#else // overlay mode

#include <poll.h>

#endif // LLVM_LIBC_FULL_BUILD

#endif // LLVM_LIBC_HDR_TYPES_NFDS_T_H
23 changes: 23 additions & 0 deletions libc/hdr/types/struct_pollfd.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
//===-- Definition of struct pollfd ---------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_LIBC_HDR_TYPES_STRUCT_POLLFD_H
#define LLVM_LIBC_HDR_TYPES_STRUCT_POLLFD_H

#ifdef LIBC_FULL_BUILD

#include "include/llvm-libc-types/struct_pollfd.h"

#else // overlay mode

#include <poll.h>

#endif // LLVM_LIBC_FULL_BUILD

#endif // LLVM_LIBC_HDR_TYPES_STRUCT_POLLFD_H
10 changes: 10 additions & 0 deletions libc/include/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -704,6 +704,16 @@ add_header_macro(
.llvm-libc-types.struct_lconv
)

add_header_macro(
poll
../libc/include/poll.yaml
poll.h
DEPENDS
.llvm-libc-types.struct_pollfd
.llvm-libc-types.nfds_t
.llvm-libc-macros.poll-macros
)

if(NOT LLVM_LIBC_FULL_BUILD)
# We don't install headers in non-fullbuild mode.
return()
Expand Down
6 changes: 6 additions & 0 deletions libc/include/llvm-libc-macros/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -321,3 +321,9 @@ add_macro_header(
HDR
pthread-macros.h
)

add_macro_header(
poll-macros
HDR
poll-macros.h
)
6 changes: 6 additions & 0 deletions libc/include/llvm-libc-macros/linux/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ add_header(
fcntl-macros.h
)

add_header(
poll-macros
HDR
poll-macros.h
)

add_header(
sched_macros
HDR
Expand Down
65 changes: 65 additions & 0 deletions libc/include/llvm-libc-macros/linux/poll-macros.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
//===-- Macros defined in poll.h header file ------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_LIBC_MACROS_LINUX_POLL_MACROS_H
#define LLVM_LIBC_MACROS_LINUX_POLL_MACROS_H

// From asm-generic/poll.h, redefined here to avoid redeclaring struct pollfd.
#ifndef POLLIN
#define POLLIN 0x0001
#endif

#ifndef POLLPRI
#define POLLPRI 0x0002
#endif

#ifndef POLLOUT
#define POLLOUT 0x0004
#endif

#ifndef POLLERR
#define POLLERR 0x0008
#endif

#ifndef POLLHUP
#define POLLHUP 0x0010
#endif

#ifndef POLLNVAL
#define POLLNVAL 0x0020
#endif

#ifndef POLLRDNORM
#define POLLRDNORM 0x0040
#endif

#ifndef POLLRDBAND
#define POLLRDBAND 0x0080
#endif

#ifndef POLLWRNORM
#define POLLWRNORM 0x0100
#endif

#ifndef POLLWRBAND
#define POLLWRBAND 0x0200
#endif

#ifndef POLLMSG
#define POLLMSG 0x0400
#endif

#ifndef POLLREMOVE
#define POLLREMOVE 0x1000
#endif

#ifndef POLLRDHUP
#define POLLRDHUP 0x2000
#endif

#endif // LLVM_LIBC_MACROS_LINUX_POLL_MACROS_H
16 changes: 16 additions & 0 deletions libc/include/llvm-libc-macros/poll-macros.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
//===-- Macros defined in poll.h header file ------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_LIBC_MACROS_POLL_MACROS_H
#define LLVM_LIBC_MACROS_POLL_MACROS_H

#ifdef __linux__
#include "linux/poll-macros.h"
#endif

#endif // LLVM_LIBC_MACROS_POLL_MACROS_H
10 changes: 6 additions & 4 deletions libc/include/llvm-libc-types/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ add_header(jmp_buf HDR jmp_buf.h)
add_header(mbstate_t HDR mbstate_t.h)
add_header(mode_t HDR mode_t.h)
add_header(mtx_t HDR mtx_t.h DEPENDS .__futex_word .__mutex_type)
add_header(nfds_t HDR nfds_t.h)
add_header(nlink_t HDR nlink_t.h)
add_header(off_t HDR off_t.h)
add_header(once_flag HDR once_flag.h DEPENDS .__futex_word)
Expand All @@ -67,14 +68,15 @@ else()
endif()
add_header(stack_t HDR stack_t.h DEPENDS .size_t)
add_header(suseconds_t HDR suseconds_t.h)
add_header(struct_dirent HDR struct_dirent.h DEPENDS .ino_t .off_t)
add_header(struct_f_owner_ex HDR struct_f_owner_ex.h DEPENDS .pid_t)
add_header(struct_flock HDR struct_flock.h DEPENDS .off_t .pid_t)
add_header(struct_flock64 HDR struct_flock64.h DEPENDS .off64_t .pid_t)
add_header(struct_f_owner_ex HDR struct_f_owner_ex.h DEPENDS .pid_t)
add_header(struct_timeval HDR struct_timeval.h DEPENDS .suseconds_t .time_t)
add_header(struct_pollfd HDR struct_pollfd.h)
add_header(struct_rlimit HDR struct_rlimit.h DEPENDS .rlim_t)
add_header(struct_rusage HDR struct_rusage.h DEPENDS .struct_timeval)
add_header(struct_dirent HDR struct_dirent.h DEPENDS .ino_t .off_t)
add_header(struct_sched_param HDR struct_sched_param.h)
add_header(struct_timeval HDR struct_timeval.h DEPENDS .suseconds_t .time_t)
add_header(struct_rusage HDR struct_rusage.h DEPENDS .struct_timeval)
add_header(union_sigval HDR union_sigval.h)
add_header(siginfo_t HDR siginfo_t.h DEPENDS .union_sigval .pid_t .uid_t .clock_t)
add_header(sig_atomic_t HDR sig_atomic_t.h)
Expand Down
14 changes: 14 additions & 0 deletions libc/include/llvm-libc-types/nfds_t.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
//===-- Definition of type nfds_t -----------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_LIBC_TYPES_NFDS_T_H
#define LLVM_LIBC_TYPES_NFDS_T_H

typedef unsigned int nfds_t;

#endif // LLVM_LIBC_TYPES_NFDS_T_H
18 changes: 18 additions & 0 deletions libc/include/llvm-libc-types/struct_pollfd.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
//===-- Definition of type struct pollfd ----------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_LIBC_TYPES_STRUCT_POLLFD_H
#define LLVM_LIBC_TYPES_STRUCT_POLLFD_H

struct pollfd {
int fd;
short events;
short revents;
};

#endif // LLVM_LIBC_TYPES_STRUCT_POLLFD_H
Loading