1 //===-- Implementation of posix_spawn_file_actions_addclose ---------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #include "posix_spawn_file_actions_addclose.h"
11 #include "file_actions.h"
12 #include "src/__support/CPP/new.h"
13 #include "src/__support/common.h"
14 #include "src/__support/macros/config.h"
15 #include "src/errno/libc_errno.h"
19 namespace LIBC_NAMESPACE_DECL
{
21 LLVM_LIBC_FUNCTION(int, posix_spawn_file_actions_addclose
,
22 (posix_spawn_file_actions_t
*__restrict actions
, int fd
)) {
23 if (actions
== nullptr)
29 auto *act
= new (ac
) SpawnFileCloseAction(fd
);
32 BaseSpawnFileAction::add_action(actions
, act
);
37 } // namespace LIBC_NAMESPACE_DECL