Tagged Questions

0
votes
0answers
16 views

Implementing a Priority queue with a Conditional Variable in C

My current understanding of conditional variables is that all blocked (waiting) threads are inserted into a basic FIFO queue, the first item of which is awakened when signal() is c …
2
votes
3answers
27 views

Validate max integer in scanf

I want to read a int from stdin but I want to validate if the user exceeds the int max value. How can I do it? int n; scanf("%d", &n); scanf reads the decimal input and store …
3
votes
6answers
90 views

Is `errno` thread-safe?

In errno.h, this variable is declared as extern int errno; so my question is, is it safe to check errno value after some calls or use perror() in multi-threaded code. Is this a thr …
0
votes
2answers
41 views

Where can I get these header files?

I'm attempting to compile SndObj, and I need some header files. Which Debian packages do I need to obtain all the missing header files? Checking for C header file alsa/asoundlib.h …
2
votes
5answers
123 views

Why is the `gets’ function is dangerous? Why should not be used?

When I try to compile C code that uses the gets function, I get a warning: warning: the gets function is dangerous and should not be used. I remember this has to do something with …
4
votes
5answers
89 views

Is there any way to determine the available stack space at run time?

I know that stack size is fixed. So we can not store large objects on stack and we shift to dynamic allocations (e.g. malloc). Also, stack gets used when there is nesting of functi …
1
vote
7answers
108 views

What are your favourite Java features? [closed]

Why do you like Java so much? What are those features that make it practically better than C or even C++?
2
votes
5answers
84 views

Copying arrays of structs in C

Hi there, It's been a long since I don't use C language, and this is driving me crazy. I have an array of structs, and I need to create a function which will copy one array to ano …
3
votes
9answers
120 views

How to think of bit operations for simple operations?

for example: unsigned int a; // value to merge in non-masked bits unsigned int b; // value to merge in masked bits unsigned int mask; // 1 where bits from b should be select …
0
votes
3answers
65 views

Add lines at the end of file

Hi, I would like to add logs at the end of a file for each event, and create a new one when its size up to 255 Mo. For example, the current file could be /var/log/foo.2: /var/lo …
1
vote
1answer
29 views

How can I test my driver is loaded, and then access my driver functions from the linux kernel?

I have a driver which compiles and loads into the linux kernel just fine. In this driver are some functions which I would like to access from the kernel file 'fs/readdir.c'. Additi …
0
votes
5answers
64 views

Determine if string from argv[1] starts with a character or number (C-programming)

I'm writing a small application in C that takes two parameters. One is a filename, the other a number, and they may be specified in random order. ./main filename 12345 and …
1
vote
3answers
82 views

Exception Handling in C - What is the use of setjmp() returning 0?

I have a few questions relating to setjmp/longjmp usage - What is the use of setjmp(jmp___buf stackVariables) returning 0. It is a default, which we cannot influence. Is the …
3
votes
3answers
63 views

Tool for program statistics

Is there a tool which is able to parse my source code (fortran, C or C++) and return statistics such as the number of loops, the average loop size, the number of functions, the num …
0
votes
1answer
20 views

StAX Writer Implementation for C/C++

Are there any other STaX Writer implementation for C/C++ except libxml2?

1 2 3 4 5 443 next
15 30 50 per page