[libc-commits] [libc] [libc] Implement execl (PR #220326)
Alexey Samsonov via libc-commits
libc-commits at lists.llvm.org
Thu Sep 3 14:02:53 PDT 2026
================
@@ -0,0 +1,67 @@
+//===----------------------------------------------------------------------===//
+//
+// 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
+//
+//===----------------------------------------------------------------------===//
+///
+/// \file
+/// Linux implementation of execl
+///
+//===----------------------------------------------------------------------===//
+
+#include "src/unistd/execl.h"
+
+#include "hdr/types/size_t.h"
+#include "src/__support/OSUtil/linux/syscall_wrappers/execve.h"
+#include "src/__support/common.h"
+#include "src/__support/libc_errno.h"
+#include "src/__support/macros/config.h"
+#include "src/unistd/environ.h"
+
+#include <stdarg.h>
+
+namespace LIBC_NAMESPACE_DECL {
+
+LLVM_LIBC_FUNCTION(int, execl, (const char *path, const char *arg0, ...)) {
+ if (arg0 == nullptr) {
+ char *argv[] = {nullptr};
+ auto ret = linux_syscalls::execve(
+ path, argv, const_cast<char *const *>(LIBC_NAMESPACE::environ));
+ if (!ret) {
+ libc_errno = ret.error();
+ return -1;
+ }
+ return *ret;
+ }
+
+ va_list varargs, varargs_copy;
+ va_start(varargs, arg0);
+ va_copy(varargs_copy, varargs);
+
+ size_t argc = 1;
+ while (va_arg(varargs, const char *) != nullptr)
+ ++argc;
+ va_end(varargs);
+
+ char *argv[argc + 1];
----------------
vonosmas wrote:
I believe the pragmas were added by @lntue recently, so presumably there's a bot configuration which complained about the lack of them.
https://github.com/llvm/llvm-project/pull/220326
More information about the libc-commits
mailing list