POSIX is an acronym for Portable Operating System Interface, a set of standards defining programming APIs and utility behavior for Unix-like operating systems.
0
votes
2answers
33 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
8 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
40 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
11 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
31 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
36 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
31 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
24 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
47 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
12 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
71 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
23 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
32 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
21 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
74 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
63 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
51 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
18 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
50 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 ...
0
votes
1answer
30 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
82 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
46 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 ...
-4
votes
0answers
27 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
78 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
90 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
35 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
37 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
48 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
2answers
41 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
60 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
9 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
212 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
56 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
41 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
58 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
votes
0answers
39 views
Any external tool to get PID of some program directly in Linux?
I know I can use tools like pgrep or ps. but in some cases the program is so little that I don't have enough time to use command like pgrep foo before it exits.
So is there any tool to get the ...
0
votes
2answers
39 views
executing a command on system() in C - linux
I run the code below,
int main() {
char settime_parameters[13]= "042122142013";
char command[25];
sprintf(command, "date %s", settime_parameters );
printf("%s\n",command);
system("commad");
...
2
votes
1answer
50 views
passing time info from NTP server to strftime function
I am using the code ntp client code at the bottom by referring the webpage on here. The code receives the time info then I would like to store the time info as YYYYMMDDHHMM like 201304211405. The code ...
1
vote
1answer
52 views
Segfault after accessing a structure in shared memory?
I have a problem with sharing values stored in a struct across processes. Below my code is simplified with only one process, which will increment the value num2. Whenever the process ends, waitpid() ...
1
vote
1answer
76 views
Why SIGINT is send to a child processand does nothing?
I am building a simple debugger for my university class and I have a problem in handling SIGINT.
What I want to do is when the debugger process (from now on PDB) takes a SIGINT signal passes that to ...
1
vote
2answers
61 views
storing logs/error message on C programming
When an error occurs, I would like my C code to store the error before exiting the program. Is it advised to store the stderr to a file (e.g., /home/logs.txt) or would it be advised to use a different ...






