0
votes
1answer
19 views

Wait until 2 pid write to FIFO(named pipe)

Im trying to make a Tic Tac Toe game with server-client using FIFO(named pipe) and shared memory. The first step is to write the pid of the client process to the FIFO. And in the server process i ...
1
vote
2answers
48 views

Seg fault (core dumped) after pthread_join in C

I keep getting a seg fault (core dump) after pthread_join in my program. It prints out the expected result just fine, but seg faults when joining the thread. I have looked at several other ...
4
votes
1answer
85 views

Very strange behavior - printf & strcmp ignore my input string in only one line

this is the code: printf(" DEBUG:%s\n" ,array[7] ); printf("address of %s is %p (again %d)\n", array[7], array[7], strcmp("N\\A", array[7]) ); printf("5DEBUG collection:%s\n" ...
1
vote
1answer
44 views

Using math.h sqrt function in C [duplicate]

Reading the documentation for math.h, it seems like all I should have to do is include math.h, and use the math functions included, such as sqrt. The problem is I get the following error when trying ...
0
votes
2answers
29 views

Assigning optarg to an int in C

I am trying to assign an optarg value to an int, but the compiler gives me the following warning: warning: assignment makes integer from pointer without a cast [enabled by default] I have tried ...
0
votes
0answers
101 views

Multipipe function breaking stdin in c?

Some friends and I are trying to implement a complete shell, and I'm in charge of the multipipe function. The problem is that just after the function ends and return, the read() in the main loop ...
1
vote
2answers
41 views

How to verify password on Unix (HPUX)

I'm writing a user daemon and when the user logs on, I want to make sure that the user is the one who started the daemon. Reason is, that I need some way of running commands which can take a lot of ...
5
votes
2answers
116 views

Difference between data section and the bss section in C

When checking the disassembly of the object file through the readelf, I see the data and the bss segments contain the same offset address. The data section will contain the intialised global and ...
1
vote
3answers
44 views

What is the purpose of calling fcntl() be called with the file descriptor as -1 and cmd as F_GETFL?

I am trying to understand what this line of code means: flags = fcntl(-1,F_GETFL,0);
0
votes
0answers
52 views

Completing my own shell code

I have created a shell in C and here is the code.I have also commented the code. #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/wait.h> #include ...
0
votes
1answer
27 views

GCC compiler is unable to find pcre.h

I am trying to compile a C program which uses regexes on FreeBSD. I have checked in /usr/local/include and the file pcre.h is definitely there. However, no matter what I do, I get the following ...
0
votes
1answer
42 views

accept() in message queues IPC UNIX

for (;;) { if (msgrcv(msqid, &flag, sizeof(struct flags) - sizeof(long), 1, IPC_NOWAIT)>0) break; } msgsnd(msqid, &message , sizeof(struct messages) - sizeof(long), 0); ...
0
votes
1answer
28 views

What is the syslog() facility if none is net using openlog()

I am trying to use syslog() and reading through the man pages tells me that in openlog(), "The facility argument establishes a default to be used if none is specified in subsequent calls to syslog()" ...
0
votes
2answers
74 views

Can not understand the pipe() in my own shell

This is the code i found for my own shell. It works fine, but the thing i can't understand is pipe section of the code. #include <stdio.h> #include <unistd.h> #include <string.h> ...
3
votes
2answers
63 views

Is returning a local pointer cause undefined behaviour

I have a doubt in the statement p = my_malloc(4); my_malloc has a local pointer called p, when the function returns the address of the pointer will be deallocated. So how is it int* p in main ...
0
votes
1answer
33 views

Using a Makefile to store object files in two different directories? [C]

I need to modify the Makefile I have to store only the object file associated with "record.c" into the bin folder. Here is what my directory structure looks like before executing Make. bin/ include/ ...
0
votes
3answers
44 views

How to use fgets() instead of fscanf() on stdin in C?

I want to use fgets instead of fscanf to get stdin and send it to a child process via a pipe. The code below works for sorting the lines in the file but replacing fscanf(stdin, "%s", word) with ...
0
votes
3answers
50 views

replace infinity loop without new thread

for(;;) { ...// CPU usage and etc... printf("Server is up: %.0f sec\n",diff_time); //seconds of running for example sleep(1); } ...//other server code I'm writing ...
4
votes
1answer
66 views

Signal number to name?

How can I quickly get signal name from its number? There is strsignal(), but I just want the name, e.g. SIGUSR1 In other words, if we have macros like SIGUSR1 -> 12 do we have anything like 12 ...
1
vote
2answers
47 views

What is the proper way to create library files with a Makefile? [C]

I am making my first Makefile for a simple shell system. I need to make library files but for some reason the library section is not working out. In the error message it says the library files do no ...
0
votes
1answer
38 views

How to loop through stdin & pipe output to a child execl command in C?

I have been trying to figure out how to loop through stdin from a file, then send it to a child process who sorts int using execl(). The code below works in that it takes the file & sorts the ...
0
votes
1answer
50 views

C/Unix Strange behaviour while using system calls and printf

I'm a newbie, trying to really understand systems programming. In the following program, I'm reading a file called 'temp1' (containing 1 2 3 4) and printing its contents to stdout. However, I also ...
0
votes
0answers
53 views

How to pipe stdin to a child and execl cat in C

In the code below, I am simply trying to send a file via stdin to a child process which will exec the cat OS command. The code compiles fine. Here is how I call it from the command line: $ ...
-4
votes
2answers
65 views

Show the list of running processes in C

Can you suggest me a system call that retrieves the current running processes? (I have to write a C function like top) I tried to read the proc/ folder but is not good in my case.
0
votes
1answer
22 views

Solaris: gdb a.out > run > opens subshell?

Haven't found anything about this. Trying to learn gdb and I get the feeling I'm doing something wrong. I compile the c program with gcc -g program.c -o a.out then use the command gdb a.out ...
0
votes
2answers
39 views

Using POPEN to store a value to a string using C programming

I am trying to write a C code under UNIX to read the third word from each line of a text, and store it to a string by using POPEN. However my code is giving me an error (Modifiable lvalue required ...
0
votes
3answers
33 views

Trying to print words in a file with C child processes

The goal is to create a child process for each word in a file, and have the child process print the word. The file only has the following five words, each one on a separate line: Aachen Biscay Capri ...
0
votes
2answers
25 views

alarm stop's when signal arrive

I'm trying to combine signal and alarm. I have 2 Processes. 1 is receiving input from the user, and write it into pipe and then sending signal (SIGUSR2) to the other Process. In the other Process, i ...
0
votes
2answers
63 views

How to print hexadecimal double in C?

I have this number in hexadecimal: FFFFFFFFFFFF and I need to save it, so I used double double a=0xffffffffffff; but I need to print it and I don't know how to. Each time I use %f, %d, %x, it ...
1
vote
1answer
47 views

Removing non alpha characters in C

Is there an easy(ish) way to replace all non alpha characters from a character array with a space such as you might do with the bash command below? sed 's/[^a-zA-Z]/ /g' The only thing I can think ...
0
votes
4answers
60 views

What does it mean to write to stdout in C?

Does a program that writes to "stdout" write to a file? the screen? I don't understand what it means to write to stdout.
0
votes
0answers
38 views

How to write to an existing UTF16LE file?

How can I write to an existing file with UTF16LE encoding? I've already used fopen(file, "a"); but the resulting file will be like this: <?xml version="1.0" encoding="UTF-16" ...
1
vote
1answer
61 views

can I tell if a pocess was killed or it crashed itself by stack dump?

I got a dumping stack when the process was killed. (gdb) Thread 2 (Thread 0xf6ec6b90 (LWP 10941)): #0 0xffffe410 in __kernel_vsyscall () #1 0xf7a47525 in *__GI___poll (fds=0xf7fb1558, nfds=1, ...
-3
votes
1answer
52 views

popen vs system function in C

Is The benefit of using popen is only to read the ouput produced by a command or there are some more benefits or advantages of popen over system. Consider two programs below: Program 1: #include ...
0
votes
1answer
46 views

How to convert UTF8 with BOM to UTF16 LE

How can I convert UTF8 with BOM to UTF16LE? I already used iconv -f UTF8 -t UTF16 TEST.xml > TEST2.xml. When checking the contents using hex editor it shows prints both the UTF8 and UTF16 (EF BB BF FF ...
0
votes
1answer
68 views

why using pthread_exit?

I'm trying to figure out the usage of pthread_exit using this example code: void* PrintVar(void* arg) { int * a = (int *) arg; // we can access memory of a!!! printf( "%d\n", *a); } int ...
3
votes
6answers
87 views

How system function in C works

I have read that system function make use of execl, fork and wait functions internally. So, I tried to simulate working of system without using it. But I am not able to achieve the same working. When ...
0
votes
1answer
21 views

Debugging open() command call with truss

Using truss -t'open' $(program_call) I get: open("command.txt", O_RDONLY|O_NONBLOCK) = 5 response FIFO file descriptor = -1 // Open call was literally sandwiched between print commands, but its ...
-5
votes
1answer
44 views

UTF-16 file doesn't print correctly [closed]

Expected: Тестирование Actual: ÂÕáâØàÞÒÐÝØÕ The file was already in UTF-16 but the expected result differ from the actual result. anyone know why this occur. I used both char array and w_char but ...
1
vote
4answers
118 views

FIFO Issue with concurrent processes

PRETEND THEY'RE NOT PARENT AND CHILD PROCESSES EVEN THOUGH THEY ARE. MAKE FIFO: /* Create response FIFO. */ if (mkfifo(RESP_FIFO_NAME, FIFO_MODE) == -1) { if (errno != EEXIST) { ...
-1
votes
1answer
43 views

Unable to open FIFO for writing

'Server' program side: #define RESP_FIFO_NAME "response" /* Global Variables */ char *cmdfifo = CMD_FIFO_NAME; /* Name of command FIFO. */ char *respfifo = RESP_FIFO_NAME; /* Name of response FIFO. ...
0
votes
2answers
61 views

archive file extracting in c

I'm just trying write c code like tar command in unix. my problem is extracting of archive file. you will see close end of file comment "problem here" . im trying extract archive file. this is binary ...
-6
votes
2answers
104 views

Why & is less used in C when compared with the reference operator & of C++ [closed]

Anyone explain "Why is & is less used in C when compared with the reference operator & C++? I am a beginner to C++? I know C++ is a federation of languages? Is & of C is different form ...
0
votes
0answers
40 views

telnet and ^D signal

Is there the way to ^D with telnet? When I press ENTER it invokes send() and telnet sends inputed data to server. When I press CTRL+D it ignores signal. Can I send data until I press CTRL+D or only ...
2
votes
2answers
66 views

How to prevent C read() from reading from cache

I have a program that is used to exercise several disk units in a raid configuration. 1 process synchronously (O_SYNC) writes random data to a file using write(). It then puts the name of the ...
1
vote
3answers
96 views

zombie process remove without wait C

I've got a child process which just exit(0). It became zombie. Is there way to remove it without wait or waitpid in parent process? R+ ./server //parent R+ ./server //child Z+ (server) //child ...
0
votes
2answers
41 views

Measure tcp-connection speed

I want to write simple unix-application that measures tcp-connection speed. So I have: server listens on specified port, accepts connections and measures speed client sends messages (continuously) ...
1
vote
0answers
32 views

vsnprintf equivalent for wide strings on Posix based systems

On Mac OS X (most UNIX based systems), vsnprintf return the number of characters printed (not including the trailing '\0' used to end output to strings) OR if an error occurs it returns the number of ...
0
votes
0answers
61 views

Displaying File Permissions in UNIX

I am trying to type a C program which will display the user's permissions for files typed on the command line. To test it, I typed the pathname of the file in the main function. It shows an error ...
-2
votes
5answers
50 views

How to store an output from a UNIX command into a char with in C programming

Let's say here is my code: int main() { char *number; system("grep total myfile > filename"); printf(number); } This code finds the line from myfile containing "total" and outputs ...

1 2 3 4 5 40