From 98f21e694a6b0964d6d08196cb6bfbc1c2ae2ff4 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Fri, 5 Jul 2024 00:02:53 +0300 Subject: 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 --- src/uapi/proc.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/uapi/proc.c') 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); -- cgit v1.3