aboutsummaryrefslogtreecommitdiff
path: root/src/uapi
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-07-05 00:02:53 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-07-05 00:03:59 +0300
commit98f21e694a6b0964d6d08196cb6bfbc1c2ae2ff4 (patch)
treecbdba41381dc6e7a571001928eeb84996020db13 /src/uapi
parenta6557ed0233e2193cef0ab5b4cea7f1d7f19ad5d (diff)
downloadkmi-98f21e694a6b0964d6d08196cb6bfbc1c2ae2ff4.tar.gz
kmi-98f21e694a6b0964d6d08196cb6bfbc1c2ae2ff4.zip
fix some small build issues
+ Compiling for size emits memcpy() calls after they've already been removed by LTO, so add __used attribute to counteract this. Newer versions of GCC seem to prefer `-flto=auto` to just `-flto`, so use that. printf format %d -> %ld
Diffstat (limited to 'src/uapi')
-rw-r--r--src/uapi/ipc.c3
-rw-r--r--src/uapi/proc.c5
2 files changed, 5 insertions, 3 deletions
diff --git a/src/uapi/ipc.c b/src/uapi/ipc.c
index ddc7242..3c24f1c 100644
--- a/src/uapi/ipc.c
+++ b/src/uapi/ipc.c
@@ -153,7 +153,8 @@ static __noreturn void __run_notify(struct tcb *t, struct tcb *r)
/* if we're in the root process, we can safely handle signals and
* becoming orphaned */
if (!is_rpc(t))
- set_bits(flags, t->notify_flags & (NOTIFY_SIGNAL | NOTIFY_ORPHANED));
+ set_bits(flags,
+ t->notify_flags & (NOTIFY_SIGNAL | NOTIFY_ORPHANED));
/* handle critical notifications with special care */
if (is_set(t->notify_flags, NOTIFY_IRQ | NOTIFY_TIMER)) {
diff --git a/src/uapi/proc.c b/src/uapi/proc.c
index 5b64dce..85acb29 100644
--- a/src/uapi/proc.c
+++ b/src/uapi/proc.c
@@ -97,7 +97,7 @@ SYSCALL_DEFINE2(exec)(struct tcb *t, sys_arg_t bin, sys_arg_t interp)
/* exec is only allowed if we own all our own resources */
if (t->refcount)
- return_args1(t, ERR_INVAL)
+ return_args1(t, ERR_INVAL);
/* mark binary to be kept */
struct mem_region *b = find_used_region(&t->sp_r, bin);
@@ -267,7 +267,8 @@ SYSCALL_DEFINE1(detach)(struct tcb *t, sys_arg_t tid)
orphanize(o);
/* generally the thread shouldn't do anything with this information, but
- * it fits really nicely into the notification framework so just do it */
+ * it fits really nicely into the notification framework so just do it
+ */
notify(o, NOTIFY_ORPHANED);
return_args1(t, OK);