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

0
votes
1answer
18 views

Package java.util.regex supports which standards

I wanted to know java supports which standards for regular expression. By the word standards i mean does it support IEEE POSIX BRE, ERE, and SRE. Can anyone give any idea. Thanks in advance for the ...
0
votes
0answers
24 views

FreeBSD POSIX C Oracle API

I have trouble finding Oracle Call Interface for FreeBSD. I maybe missing something simple but I searched net for several days and finally ended up here with question. My task is fairly simple: write ...
0
votes
1answer
7 views

posix shell: stdout to file, exitcode to a variable and last line of stderr to another variable

I implemented the following in POSIX shell (not bash): fail.sh: #!/bin/sh echo something useful echo warning 1 >&2 echo warning 2 >&2 echo an error message >&2 exit 100 The ...
0
votes
0answers
37 views

How to use mega.co.nz API? [closed]

How to use mega.co.nz API? I want to use MEGA API as explained here https://mega.co.nz/#developers but I have no idea how to implement it in C#? They basically use JavaScript as main engine and ...
1
vote
1answer
17 views

Periodic thread fails real-time in Xenomai

I'm creating a periodic thread which outputs a square signal on an analogic output. I'm using Posix Skin and Analogy from the Xenomai API. I tested the real-time performance of my code using an ...
2
votes
3answers
65 views

How to write 0x00 into file

I'm writing some application which will communicate (write only) with my custom USB-serial device. It is Cocoa (OS X) application and part which is related to this writing is coded in POSIX style. I ...
0
votes
2answers
35 views

POSIX read(2), unexpected behavior

I have some issues using read(2) in a learning test. The code is the following: #include <stdio.h> int main() { size_t length; read(0, &length, sizeof(length)); printf("input ...
1
vote
1answer
17 views

mixed multiple extensions and file match with POSIX regex

I'd like to match all files with extensions .xml, .csv and all files named liveinfo.txt with POSIX regex. Could you please help out? I know if I had a single extension I could use "\.acf". Thanks, ...
0
votes
0answers
15 views

posix_kill is not working from cli

here is my script: #!/usr/bin/php <?php $pid = 18283; $is_ok = posix_kill($pid, SIGKILL); if($is_ok){ echo 'OK'; } else { echo 'NOT OK'; } Script output 'NOT OK', process with ...
0
votes
1answer
45 views

Is there more clean regex for .so libs names?

I am using <regex.h> and trying to write a regex for .so names including names such as libmath.so.01. Is there a cleaner regex I can use ? what I came out with is: ...
1
vote
0answers
17 views

Anonymous shared memory?

Is there a POSIX-y way to allocating shared memory that's not tied to a specific filename? I.e. memory that is shared between processes only by passing SCM_RIGHTS messages via UNIX domain sockets?
0
votes
1answer
32 views

Is t_whatever a reserved name in the C standard or POSIX?

As far as I know: an underscore (‘_’) and all identifiers regardless of use that begin with either two underscores or an underscore followed by a capital letter are reserved names In ...
0
votes
3answers
38 views

Determining button boundries with terminal IO in non-canonical mode

I'm trying to understand how terminal I/O works. When a terminal is placed in non-canonical mode like so (missing error handling): struct termios term_original, term_current; tcgetattr(STDIN_FILENO, ...
0
votes
1answer
34 views

Is it safe to perform file-based (fd-based) access on a POSIX shared memory object?

shm_open returns an fd associated with a "shared memory object". And normally, this object is then mapped into virtual memory (with mmap) to access as a memory-mapped file. However, is it safe to ...
-2
votes
1answer
30 views

Unconsistent values returned when reading /proc/stat [closed]

I want to write a program that records CPU usage in a second, and prints it on screen. It works by reading /proc/stat file, read it again after 1 second, then subtracts second value from first, and ...
-1
votes
0answers
29 views

What's the difference between SIGKILL and SIGSTOP? [migrated]

The manual describes SIGKILL and SIGSTOP like this: SIGKILL 9 Term Kill signal SIGTERM 15 Term Termination signal and states: The signals SIGKILL and SIGSTOP cannot ...
-2
votes
2answers
52 views

how to define rand() acording to probability?

having 1 bag with 3 equal balls i made code to simulate number of times each ball comes off (works flawlessly so far) #include <stdio.h> #include <stdlib.h> #include <time.h> ...
0
votes
1answer
14 views

bsd or posix way get preferred domain controller?

Is there any way to get preferred domain controller name using BSD/POSIX C function calls? Please, advice if there are any functions that can be used to get preferred DC name under Mac OS X.
4
votes
1answer
77 views

rounding times to the nearest hour in R [duplicate]

I have data in the format time: 16:53, 10:57, 11:58 etc I would like to create a new column where each of these times is rounded to the nearest hour. I cannot seem to get the POSIX command to work ...
0
votes
0answers
16 views

Broadcast through network don't work

I'm trying to write server and client apps which will communicate through sockets, but I need them to find each other in network without specifying ip addresses. I try to use UDP and send message from ...
0
votes
1answer
32 views

Can I use setlocale() and isalpha() to determine if character belongs to alphabet of current locale?

Is it possible to do setlocale(LC_CTYPE, "ru_RU.utf8") and for each symbol of string "рус eng" do isaplha() check and to get as result following: р alpha у alpha с alpha not alpha e not alpha n ...
1
vote
1answer
33 views

dup return value is always zero

I would to know why does dup always return zeroes in the following code (in which a file is opened, than 10 dup are done successively) : #include <stdio.h> #include <stdlib.h> #include ...
0
votes
1answer
28 views

Can TCC be modified to compile with Emscripten? If not, where can I find an x86-generating C compiler that does?

After unzipping tcc-0.9.26, I edit configure to point at emcc instead of gcc and at emar instead of ar. Next, I uncomment the include of ucontext in tcc.h since it seems to be needed only for tccrun. ...
0
votes
1answer
13 views

Terminal vs Eclipse PosixFilePermissions

By running the same command from the Eclipse and from the command line I get 2 different results: With Eclipse everything works fine, however with the command line I get the following error message: ...
-1
votes
1answer
85 views

Implementing basic semaphore to simple multi-threads program

Please help the Synchronization I have to make this program to performe sequentially manner using in threads( ex) thread1 performe and thread2 perforem and so on) But it should be ...
3
votes
4answers
67 views

Linux, share a buffer with another program in fork()

I have a Client/Server model where each client can send a Task to the Server - This is called Task Requesting. This is a base for a simple distributed-computing library i am after. "In other words, ...
1
vote
0answers
56 views

Terminating multithreaded application in C++11 by POSIX signal

I wrote a simple multithreaded application in C++11 on Linux platform and I would like to terminate the server and its running threads by sending SIGINT signal. Obviously my server application uses ...
0
votes
0answers
24 views

ENOMEM error when trying to do mq_open repeatedly with the same Message Queue Name

Am trying to Implement a Server - Client communication using POSIX message Queues. Am getting "ENOMEM" error, when i try to open a Message Queue. This problem occurs in a strange way. The Scenario ...
-1
votes
0answers
18 views

glob_t incomplete data type

I'm working with the wolfenstein3d redux's code to update the Linux backend, and I found out it was using an id's implementation of glob to implement FindFirst and FindNext like functions (it's done ...
0
votes
2answers
53 views

POSIX to DOS and DOS to POSIX path conversion in C

I was playing with the Cygwin GCC, where I wanted to print the current directory path using glib's g_get_current_dir in Windows and as well as in Linux. The problem is that the app is printing the ...
-1
votes
1answer
34 views

To quote or not to quote, that is the <q-word-not-allowed-in-titles>

When shell programming we need to care for proper quoting, so parameter expansion does the right thing with respect to white space in expansions, or to prevent word splitting getting in the way. The ...
2
votes
2answers
83 views

Defining the concept of “library-safe” code [closed]

First of all, I hope this question isn't too open-ended. As an ingredient for use in coding standards/policy, comparison of libraries/APIs, etc. I'm looking to establish a formal or at least ...
0
votes
1answer
56 views

Are PHP pthreads the same as the POSIX threads?

I found this reference to pthreads in order to do threading in PHP which is new: http://php.net/manual/en/book.pthreads.php But when I google pthreads only references for POSIX threads come up, which ...
-3
votes
0answers
28 views

Implementing a POSIX subsystem for Windows NT [closed]

I'm planing to implement (a subset of) POSIX API as a subsystem for Windows NT. Nothing serious, just a project for fun (and my graduation work :) ) The plan is to implement a true subsystem, just ...
2
votes
1answer
80 views

Non-busy blocking Queue Implementation in C

I am trying to implement a queue in C that causes a process to non-busy wait until there is an element in the queue to consume. I have tried two different things to try to achieve this. The first ...
0
votes
4answers
99 views

Passing multiple arguments to threaded function from pthread_create

this is my first attempt at threading in C. I am creating a circularly bounded buffer. I know how to create the thread, but all examples I have seen only have threaded functions that accept one void ...
0
votes
1answer
36 views

pthreads: cancel blocking thread

I have a situation like -Thread A- Lock Mutex If ActionA() == ERROR Stop = True Unlock Mutex -Mainthread- Lock Mutex If ActionB() == ERROR Stop = True If Stop == True Cancel ...
2
votes
1answer
40 views

glibc - get handle to shared library having symbol containing specified address

Something like dladdr that gives me a dynamic library handle to the shared object or a way to get the handle from the shared object's base address. The file containing the shared object may have been ...
-1
votes
1answer
50 views

Using pselect for synchronous wait

In a server code I want to use pselect to wait for clients to connect as well monitor the standard output of the prozesses that I create and send it to the client (like a simplified remote shell). I ...
0
votes
1answer
49 views

Sigalrm (linux signal)

i am new to linux signals. My question is: If a process in initializes multiple timers, then how a process know that SIGALRM belongs to which timer? Thanks in advance
1
vote
0answers
17 views

Synchronization in finding tuples satisfying given template

Tuple read(Template template) gets a template of a tuple as parameter and returns a tuple satisfying the template from the buffer (shared memory). void write(Tuple tuple) writes a tuple into the ...
1
vote
2answers
61 views

Rounding error with microseconds using as.POSIXlt

I find some strange behaviour from as.POSIXlt that I am unable to explain, I am hoping someone else can. In investigating this question I found that sometimes the fractional part of a second would be ...
0
votes
1answer
10 views

Can i compose a posix_time::ptime object my self?

I have a object which have a boost::posix_time::ptime object in it. And I will get the time from other library which doesnt provide standard time struct, they have their own customized time struct My ...
0
votes
1answer
36 views

Scheduling Posix based Threads

I am using posix based threads in linux to listen on non-blocking socket. I want to call that this thread for specific time duration e.g. for .01 sec. Is there any way I can do that? Thanks
1
vote
3answers
250 views

Using Linux POSIX IPC message queue

I have to create single Server Process A and multiple client process(es). All should use Linux POSIX IPC message queue for data passing. Message(s) will flow in both direction. It is also possible ...
1
vote
0answers
22 views

obtaining the hop count or receive ttl

How do i retrieve (programmatically) the TTL/hop count value for the received data/packets of a TCP stream on a Linux (or any other posix systems altough linux-only solutions are welcome too) system? ...
2
votes
0answers
23 views

Reopening the file of a memory mapped region

Is there a way in various POSIX-like OSes to determine which file was mapped to a memory region using mmap? Linux has /proc/self/maps which contains not only the file name but also the device and ...
1
vote
2answers
66 views

setting timeout for recv fcn of a UDP socket

I send a UDP packet by sendto, then receive the answer by recv.if recv does not receive the reply, the program does not proceed. However, the udp packet might be lost, or for some reason, the packet ...
0
votes
1answer
42 views

posix queue vs custom 0 copy queue for intra-process thread communication

This is a design issue. Often Posix queues are preferred over anything custom because they are thoroughly tested, and offer advance features such as priority queuing that can be key to development. ...
-1
votes
2answers
61 views

Socket Programming - Weird Behavior

I am trying to build an HTTP client. So far I have something that takes an ip address and prints the http response, no problem. But when I try to take that response and put it into a string the ...

1 2 3 4 5 35