search for: posix_spawnp

Displaying 9 results from an estimated 9 matches for "posix_spawnp".

Did you mean: posix_spawn
2023 Feb 16
1
Robustifying R_CleanTempDir a bit more
...special symbols should suffice (it and the backslash being the only allowed ways to "un-quote" a single-quoted string), I would like to suggest solving the problem without the use of quoting: #include <spawn.h> char ** argv = { "rm", "-Rf", Sys_TempDir, NULL }; posix_spawnp(NULL, "rm", NULL, NULL, argv, NULL); Are there Unix-like platforms on which R is intended to work that don't have posix_spawn()? Circa-2014 versions of both Solaris and OpenBSD seem to have it. Spawning the process manually by means of [v]fork() and exec() is probably not worth the m...
2023 Feb 16
2
Robustifying R_CleanTempDir a bit more
...t and the backslash being the only allowed ways to > "un-quote" a single-quoted string), I would like to suggest solving the > problem without the use of quoting: > > #include <spawn.h> > > char ** argv = { "rm", "-Rf", Sys_TempDir, NULL }; > posix_spawnp(NULL, "rm", NULL, NULL, argv, NULL); > > Are there Unix-like platforms on which R is intended to work that don't > have posix_spawn()? Circa-2014 versions of both Solaris and OpenBSD > seem to have it. Spawning the process manually by means of [v]fork() > and exec() is...
2017 Jan 23
2
undefined symbols during linking LLDB 4.0 RC1
...00000000003b GLIBC_2.2.5 isxdigit 0000000000000000 DF *UND* 000000000000003b GLIBC_2.2.5 isprint 0000000000000000 DF *UND* 000000000000039b GLIBC_2.2.5 calloc 0000000000000000 DF *UND* 0000000000000025 GLIBC_2.2.5 alarm 0000000000000000 DF *UND* 0000000000000015 GLIBC_2.2.5 posix_spawnp 0000000000000000 DF *UND* 0000000000000107 GLIBC_2.2.5 posix_openpt 0000000000000000 DF *UND* 00000000000000fa GLIBC_2.12 pthread_setname_np 0000000000000000 DF *UND* 000000000000007a Base _ZNSt11logic_errorC2EPKc 0000000000000000 DF *UND* 0000000000000044 GLIBC_2.2....
2017 Jan 19
2
undefined symbols during linking LLDB 4.0 RC1
Hello, I update my building scripts to build LLVM 4.0 RC1 (with clang, lldb, libc++, libc++abi, lld) on CentOS 6 and I got a lot of undefined symbols during linking LLDB. I'm using clang-3.9 and this configuration: -DLLVM_TARGETS_TO_BUILD="X86" -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++
2016 Aug 18
5
[PATCH v2 0/4] New getprogname module
Hi, as discussed in [1], this series adds a new getprogname module. All it does is providing a getprogname function, much like what is found on e.g. *BSD systems, and using it in gnulib instead of progname. Also, using it explicitly by modules avoids gnulib users the need of either use the progname module (GPL), or to provide program_name (and call set_program_name manually, which is not always
2017 Jul 07
2
[PATCH v2] v2v: docs: VDSM location of virt-v2v log file.
See this bug for background information: https://bugzilla.redhat.com/show_bug.cgi?id=1350465 Thanks: Tomáš Golembiovský --- v2v/virt-v2v.pod | 38 ++++++++++++++++++++++++++------------ 1 file changed, 26 insertions(+), 12 deletions(-) diff --git a/v2v/virt-v2v.pod b/v2v/virt-v2v.pod index e68d75cf8..0943bf305 100644 --- a/v2v/virt-v2v.pod +++ b/v2v/virt-v2v.pod @@ -1909,18 +1909,32 @@ that
2017 Jul 07
3
[PATCH] v2v: docs: VDSM location of virt-v2v log file.
See this bug for background information: https://bugzilla.redhat.com/show_bug.cgi?id=1350465 --- v2v/virt-v2v.pod | 39 +++++++++++++++++++++++++++------------ 1 file changed, 27 insertions(+), 12 deletions(-) diff --git a/v2v/virt-v2v.pod b/v2v/virt-v2v.pod index e68d75cf8..93d1a9ecd 100644 --- a/v2v/virt-v2v.pod +++ b/v2v/virt-v2v.pod @@ -1909,18 +1909,33 @@ that guest through the RHV-M UI,
2017 Jun 27
3
[PATCH] libvirt: disallow non-local connections (RHBZ#1347830)
If the connection is not local, paths of disks will refer to the remote host, which were mistakenly handled as local paths (in the best case failing to open a non-existing disk, and in the worst case opening a different disk!). In case the disks are remote resources like ssh or ceph, nothing guarantees that the hostname can be reached from the local machine, or even that it is actually the same on
2017 Jul 07
4
[PATCH v6 0/3] gobject: Remove gtk-doc (RHBZ#1465665).
Hopefully this time ...