Tagged Questions

POSIX is an acronym for Portable Operating System Interface, a set of standards defining programming APIs and utility behavior for Unix-like operating systems.

learn more… | top users | synonyms

40
votes
6answers
2k views

I never really understood: what is POSIX?

What is POSIX? I read the Wikipedia article and I read it ever time I encounter the term. Fact is that I never really understood what it is. Can anyone please explain it to me by explaining "the need ...
30
votes
4answers
20k views

How to execute a command and get output of command within C++?

I am looking for a way to get the output of a command when it is run from within a C++ program. I have looked at using the system() function, but that will just execute a command. Here's an example ...
28
votes
4answers
11k views

When should I use mmap for file access?

POSIX environments provide at least two ways of accessing files. There's the standard system calls open(), read(), write(), and friends, but there's also the option of using mmap() to map the file ...
24
votes
14answers
1k views

What are some interesting C/C++ libraries to play around with?

I'm looking for a few new libraries and for C and C++. In the past most of the time I "accidently" stumbled across a few - and most of them found good use in projects I worked on. Libraries should ...
24
votes
12answers
12k views

Why does GCC-Windows depend on cygwin?

I'm not a C++ developer, but I've always been interested in compilers, and I'm interested in tinkering with some of the GCC stuff (particularly LLVM). On Windows, GCC requires a POSIX-emulation layer ...
24
votes
2answers
4k views

What is the status of POSIX asynchronous I/O (AIO)?

There are pages scattered around the web that describe POSIX AIO facilities in varying amounts of detail. None of them are terribly recent. It's not clear what, exactly, they're describing. For ...
20
votes
5answers
279 views

Why does \$ reduce to $ inside backquotes [though not inside $(…)]?

Going over the POSIX standard, I came accross another rather technical/pointless question. It states: Within the backquoted style of command substitution, <backslash> shall retain its ...
19
votes
3answers
304 views

Why did POSIX mandate CHAR_BIT==8?

There's a note in the POSIX rationale that mandating CHAR_BIT be 8 was a concession made that was necessary to maintain alignment with C99 without throwing out sockets/networking, but I've never seen ...
19
votes
6answers
704 views

Good collection of libraries for C?

I'm looking for a good collection of libraries for ANSI-C, stuff for handling vectors, hash maps, binary tress, string processing, etc.
18
votes
5answers
530 views

Forcing a spurious-wake up in Java

This question is not about whether spurious wake-ups actually happen, because this was already discussed in full length here: Do spurious wakeups actually happen? Therefore this is also not about, why ...
18
votes
3answers
641 views

Defining PATH_MAX for a filesystem?

I'm presently writing a filesystem. The statvfs (and even the statfs) structs contain a field specifying the maximum length of a name in that path. As PATH_MAX is defined in the pathconf manpage ...
17
votes
2answers
392 views

What are the WONTFIX bugs on GNU/Linux and how to work around them? [closed]

Both Linux and the GNU userspace (glibc) seem to have a number of "WONTFIX" bugs, i.e. bugs which the responsible parties have declared their unwillingness to fix despite clearly violating the ...
17
votes
10answers
2k views

What is the purpose of fork()?

In many programs and man pages of Linux, I have seen code using fork(). Why do we need to use fork() and what is its purpose?
16
votes
5answers
3k views

Getting the highest allocated file descriptor

Is there a portable way (POSIX) to get the highest allocated file descriptor number for the current process? I know that there's a nice way to get the number on AIX, for example, but I'm looking for ...
16
votes
5answers
9k views

Is there an equivalent to WinAPI's MAX_PATH under linux/unix?

If I want to allocate a char array (in C) that is guaranteed to be large enough to hold any valid absolute path+filename, how big does it need to be. On Win32, there is the MAX_PATH define. What is ...
15
votes
4answers
5k views

Is an atomic file rename (with overwrite) possible on Windows?

On POSIX systems rename(2) provides for an atomic rename operation, including overwriting of the destination file if it exists and if permissions allow. Is there any way to get the same semantics on ...
14
votes
5answers
333 views

Function overloading in C

Today, looking at the man page for open(), I've noticed this function is 'overloaded': int open(const char *pathname, int flags); int open(const char *pathname, int flags, mode_t mode); I ...
13
votes
4answers
204 views

Are system() calls evil?

I am designing an C++ app that, among other things, executes a few scripts every now and then. The app should be efficient and preferably platform independent. The issue is, however: is there a ...
13
votes
1answer
950 views

Cost of context switch between threads of same process, on Linux

Is there any good empirical data on the cost of context switching between threads of the same process on Linux (x86 and x86_64, mainly, are of interest)? I'm talking about the number of cycles or ...
13
votes
1answer
756 views

How to convert a PCRE to a POSIX RE?

This interesting question http://stackoverflow.com/questions/2837267/ concerned how to do a negative look-ahead in MySQL. The poster wanted to get the effect of Kansas(?! State) because MySQL ...
12
votes
2answers
281 views

Why does POSIX specify wctomb as non-thread-safe, but not mbtowc?

In XSH 2.9.1, wctomb is listed as one of the functions which is not required to be thread-safe. However, the opposite conversion function, mbtowc, does not appear in the list. On an implementation ...
12
votes
6answers
5k views

How can I catch a ctrl-c event? (C++)

How do I catch a ctrl-c event in C++?
12
votes
7answers
3k views

How to be notified of file/directory change in C/C++, ideally using POSIX

The subject says it all - normally easy and cross platform way is to poll, intelligently. But every OS has some means to notify without polling. Is it possible in a reasonably cross platform way? (I ...
11
votes
4answers
144 views

Is it always safe to convert an integer value to void* and back again in POSIX?

This question is almost a duplicate of some others I've found, but this specifically concerns POSIX, and a very common example in pthreads that I've encountered several times. I'm mostly concerned ...
11
votes
2answers
291 views

Who uses POSIX realtime signals and why?

I am not being flip I really don't get it. I just read a whole bunch of material on them and I can't figure out the use case. I am not talking talking so much about the API for which the advantages ...
11
votes
3answers
1k views

What does “#define _GNU_SOURCE” imply?

Today I had to use the basename() function, and the man 3 basename gave me some strange message: Notes There are two different versions of basename() - the POSIX version described above, and ...
11
votes
2answers
577 views

Java Threads vs Pthreads

I was asked this question in an interview today. "When we create a thread with pthread_create() (POSIX Threads), the thread starts on its own. Why do we need to explicitly call start() in Java. What ...
11
votes
2answers
376 views

Resources about crash-safe and fault-tolerance programming

I like the LWN article "Crash-only software" and I would like to learn more about crash-safe and fault-tolerant programming. It is surprisingly hard to assure that the persistent state is consistent ...
11
votes
4answers
4k views

Linux MMAP internals

I have several questions regarding the mmap implementation in Linux systems which don't seem to be very much documented: When mapping a file to memory using mmap, how would you handle prefetching the ...
10
votes
1answer
164 views

What is the difference between ssize_t and ptrdiff_t?

The C standard (ISO/IEC 9899:2011 or 9899:1999) defines a type ptrdiff_t in <stddef.h>. The POSIX standard (ISO/IEC 9945; IEEE Std 1003.1-2008) defines a type ssize_t in <sys/types.h>. ...
10
votes
6answers
272 views

In Python, why won't something print without a newline?

import time import sys sys.stdout.write("1") time.sleep(5) print("2") will print "12" after 5 seconds import time import sys sys.stdout.write("1\n") time.sleep(5) print("2") will print "1\n" ...
10
votes
1answer
305 views

How much memory locked in a process

Using getrlimit(RLIMIT_MEMLOCK), one can get the allowed amount of locked memory a process can allocate (mlock() or mlockall()). But how to retrieve the currently locked memory amount ? For ...
10
votes
1answer
367 views

open() function hangs (never returns) when trying to open serial port in Mac OS X

I've run into a problem where the open function never returns when I try to open a serial port. It doesn't happen all the time, and the problem disappears for a while if I unplug my USB to serial ...
10
votes
3answers
222 views

Write my own 'everything is a file' interface

I would like to expose the settings and statistics of my program in a 'everything is a file' manner - sort of how /proc/ and /sys/ works. As an example, imagine for a moment that apache2 had this ...
10
votes
6answers
4k views

Is there a way to flush a POSIX socket?

Is there a standard call for flushing the transmit side of a POSIX socket all the way through to the remote end or does this need to be implemented as part of the user level protocol? I looked around ...
10
votes
3answers
2k views

POSIX cancellation points

Can anyone point me towards a definitive list of POSIX cancellation points? I was just about to answer a question on stackoverflow and realised I didn't know my stuff well enough! In particular, are ...
10
votes
3answers
3k views

Converting datetime to POSIX time

How do I convert a datetime or date object into a POSIX timestamp in python? There are methods to create a datetime object out of a timestamp, but I don't seem to find any obvious ways to do the ...
9
votes
3answers
180 views

Can a correct fail-safe process-shared barrier be implemented on Linux?

In a past question, I asked about implementing pthread barriers without destruction races: How can barriers be destroyable as soon as pthread_barrier_wait returns? and received from Michael Burr ...
9
votes
3answers
401 views

How to improve performance of File::Find::Rule calls?

I am using File::Find::Rule to locate one-level-deep user-executable folders in a directory specified in $dir: my @subDirs = File::Find::Rule->permissions(isExecutable => 1, user => ...
9
votes
3answers
4k views

boost::this_thread::sleep() vs. nanosleep()?

I recently came across the need to sleep the current thread for an exact period of time. I know of two methods of doing so on a POSIX platform: using nanosleep() or using Boost::this_thread::sleep(). ...
9
votes
4answers
594 views

Can a PIPE in LINUX ever lose data?

And is there a upper limit on how much data can it contain?
9
votes
5answers
1k views

Reference a GNU C (POSIX) DLL built in GCC against Cygwin, from C#/NET

Here is what I want: I have a huge legacy C/C++ codebase written for POSIX, including some very POSIX specific stuff like pthreads. This can be compiled on Cygwin/GCC and run as an executable under ...
9
votes
4answers
452 views

are posix pipes lightweight?

In a linux application I'm using pipes to pass information between threads. The idea behind using pipes is that I can wait for multiple pipes at once using poll(2). That works well in practice, and ...
9
votes
2answers
4k views

Differences between System V and Posix semaphores

What are the trade-offs between using a System V and a Posix semaphore?
9
votes
5answers
2k views

Detecting a chroot jail from within

How can one detect being in a chroot jail without root privileges? Assume a standard BSD or Linux system. The best I came up with was to look at the inode value for "/" and to consider whether it is ...
8
votes
1answer
169 views

Python, calling mmap with too-large address causes overflow exception

I am converting some C code that accesses a device driver via mmap. I thought I could easily do very similar things in Python. However I've run into this issue. The address that needs to be mmap'ed ...
8
votes
1answer
156 views

How to kill all children of the current shell on interrupt?

My scripts cdist-deploy-to and cdist-mass-deploy (from cdist configuration management) run interactively (i.e. are called by a user). These scripts call a lot of scripts, which again call some ...
8
votes
2answers
256 views

How can barriers be destroyable as soon as pthread_barrier_wait returns?

This question is based on: When is it safe to destroy a pthread barrier? and the recent glibc bug report: http://sourceware.org/bugzilla/show_bug.cgi?id=12674 I'm not sure about the semaphores ...
8
votes
2answers
256 views

What happens if a signal handler is invoked while at a cancellation point?

Suppose an application is blocked at a cancellation point, for example read, and a signal is received and a signal handler invoked. Glibc/NPTL implements cancellation points by enabling asynchronous ...
8
votes
5answers
1k views

How does SIGINT relate to the other termination signals?

On POSIX systems, termination signals usually have the following order (according to many MAN pages and the POSIX Spec): SIGTERM - politely ask a process to terminate. It shall terminate gracefully, ...

1 2 3 4 5 21