Skip to content

[libc] add missing header dependencies for sched objects #78741

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

Merged
merged 1 commit into from
Jan 21, 2024
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
8 changes: 8 additions & 0 deletions libc/src/sched/linux/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ add_entrypoint_object(
../sched_setparam.h
DEPENDS
libc.include.sys_syscall
libc.include.time
libc.include.sched
libc.src.__support.OSUtil.osutil
libc.src.errno.errno
)
Expand All @@ -64,6 +66,8 @@ add_entrypoint_object(
../sched_getparam.h
DEPENDS
libc.include.sys_syscall
libc.include.time
libc.include.sched
libc.src.__support.OSUtil.osutil
libc.src.errno.errno
)
Expand All @@ -76,6 +80,8 @@ add_entrypoint_object(
../sched_setscheduler.h
DEPENDS
libc.include.sys_syscall
libc.include.time
libc.include.sched
libc.src.__support.OSUtil.osutil
libc.src.errno.errno
)
Expand All @@ -87,6 +93,7 @@ add_entrypoint_object(
HDRS
../sched_getscheduler.h
DEPENDS
libc.include.sched
libc.include.sys_syscall
libc.src.__support.OSUtil.osutil
libc.src.errno.errno
Expand Down Expand Up @@ -124,6 +131,7 @@ add_entrypoint_object(
../sched_rr_get_interval.h
DEPENDS
libc.include.sys_syscall
libc.include.sched
libc.src.__support.OSUtil.osutil
libc.src.errno.errno
)
1 change: 1 addition & 0 deletions libc/src/spawn/linux/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ add_entrypoint_object(
libc.include.fcntl
libc.include.spawn
libc.include.sys_syscall
libc.include.signal
libc.src.__support.CPP.optional
libc.src.__support.OSUtil.osutil
libc.src.spawn.file_actions
Expand Down