0
votes
2answers
49 views

Unix Processes - compile and run c program

Create a parent process that gets from the command line n arguments arg1, arg2, ... , argn. arg1 is the name to a source C, arg2 is the name of the executable file results from compile arg1, and arg3, ...
-3
votes
2answers
70 views

Get all functions and their length in a c program [closed]

I'd like to be able to analyze a .c file and List all the methods in the file List how long each method is in lines IE: If the file was (Using Pseudo-code): int add(){ ....Function Actions 1 ...
0
votes
1answer
31 views

Trying to compile a target. It is C code. Have put #ifdef MYDEBUG. How to pass it as set during compilation?

I am trying to compile a target using make. In my code, I have put prepossessing conditionals as: #ifdef MYDEBUG (code to execute) #endif Now I was under the impression that if I do a make ...
0
votes
3answers
53 views

Does it make sense to do a select() when using ONLY 1 non-blocking socket?

My application has ONLY 1 Unix TCP socket that it uses to recv() and send(). The socket is non-blocking. Given this, is there an advantage in doing a select() before a send()/recv()? If the ...
0
votes
2answers
26 views

Meaning of field d_off in last struct dirent

man getdensts says that in d_off an offset to next struct dirent is kept. But what should be kept in this field for last dirent? I was unable to find this SVr4 standard to look there, but man says ...
0
votes
4answers
46 views

strtok_r - get indicate when there is nothing between the delimiters

i use strtok_r like: char *the_sting = "a|b||e|f"; char *last; char *current; current = (char*)strtok_r(the_sting, "|", &last); while(current != NULL) { printf(current); printf("\n"); ...
3
votes
1answer
37 views

c copy file permissions from another file

What's the simplest way to copy the unix file permissions of a file and set them to another file? Is there a way to store a file's permissions to a variable and then use that variable to set those ...
0
votes
1answer
19 views

PROC : Regarding proc Executable size difference

2 years back , I have compiled the proc test.pc and create the executbale "test" . Now same proc program I have compiled , but executable size is different compare to previous one(i didn't change ...
0
votes
2answers
50 views

How to make a UNIX pipe prompt for user input correctly?

I am trying to have UNIX pipes correctly prompt for user input. I have to create 3 child processes using a single pipe. Each child process asks the user to enter an integer and writes it to the pipe. ...
0
votes
4answers
96 views

Can we change permissions from user to root?

I have a written a C program that creates a file "abcd.txt" and write some data into it. I was executing my code by logging with a username"bobby" and so the file abcd.txt was created with owner as ...
-1
votes
1answer
40 views

Advanced Unix Programming - Chapter 1 shell code error

I noticed the following code of a simple shell program from the latest edition of Advanced Unix Programming did not run properly and compiled with a warning about comparing a pointer and integer in ...
1
vote
2answers
43 views

How do I communicate between a server and a client using sockets? [C]

I am doing a Unix, C assignment. I am creating a Server and a Client which will interact with each other. I am pretty sure I have set up the basic framework but I when I try to send/receive messages, ...
0
votes
1answer
50 views

Creating my first Unix Server/Client but getting a “shmget: Invalid argument” error and possibly more. [C]

I am doing a Unix, C assignment. I am creating a Server and a Client which will interact with each other. I am not very experienced with TCP/IP programming so I apologize for being slow in advance. ...
0
votes
1answer
36 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
53 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
100 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
53 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
34 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
106 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
42 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
127 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
47 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
57 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
29 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
46 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
31 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
77 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
38 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
58 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
52 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
67 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
51 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
49 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
55 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
65 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
72 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
23 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
44 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
36 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
27 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
64 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
52 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
62 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
1answer
54 views

Append text 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
58 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
48 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
72 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 ...

1 2 3 4 5 40