1
vote
3answers
72 views

fileno() not available?

I am trying to use the posix function isatty() in my C code, to tell if the output is being redirected. However, to do this I need a file descriptor, and from my research it looks like fileno() is no ...
5
votes
1answer
75 views

numpy.nextafter decrementing instead of incrementing

I fell on a weird case. I tried either of the three solutions posted here from Pyson: Increment a python floating point value by the smallest possible amount. All three solutions display a weird ...
4
votes
4answers
113 views

Identify buffer allocated with malloc()

Is there any way to identify if a buffer was allocated by 'malloc'? like a function with the following signature: bool is_malloced(void *buf); Does such a mechanism exist in posix?
2
votes
2answers
113 views

Does `recv` work with bytes or octets, or are they one and the same in the context of POSIX documentation?

Reading the POSIX reference for socket send at http://pubs.opengroup.org/onlinepubs/009695399/functions/send.html I wonder, what exactly do they mean by "byte" - its traditional/historical meaning, ...
13
votes
5answers
388 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 ...
1
vote
1answer
77 views

What is the POSIX c99 utility usually implemented as on Linux systems?

I am curious what the POSIX c99 utility is usually implemented as in GNU/Linux distributions. I realize that this is really a question that should be answered by each distribution's documentation, ...
2
votes
5answers
1k views

What Can I Use Besides usleep in a Modern POSIX Environment?

I'm fairly new to C but writing a small multithreaded application. I want to introduce a delay to a thread. I'd been using 'usleep' and the behavior is what I desire - but it generates warnings in ...
4
votes
7answers
938 views

main return value range

What does standard say about main return values range? say only up to 255? Because int main(void){ return 256; } echo $? ; # out 0
8
votes
2answers
3k views

Create statically-linked binary that uses getaddrinfo?

I have included the header netdb.h, where getaddrinfo is included, but gcc issues this warning: warning: Using 'getaddrinfo' in statically linked applications requires at runtime the shared libraries ...