3
votes
2answers
30 views
How many open udp or tcp/ip connections can a linux machine have?
There are limits imposed by available memory, bandwidth, CPU, and of course, the network connectivity. But those can often be scaled vertically. Are there any other limiting factor …
4
votes
6answers
100 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 …
4
votes
5answers
96 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 …
0
votes
1answer
29 views
On Linux with command line, how do I record /dev/dsp?
I'm trying to tee what comes through /dev/dsp into an MP3 (or WAV or Ogg, but MP3 would be more preferable).
On Ubuntu Linux 8.04 LTS Desktop, I've tried tools like sox and lame a …
2
votes
2answers
57 views
Atomic file save on Linux without losing metadata
I'm working on a Perl-based file synchronization tool. It downloads files into a temporary directory (which is guaranteed to be on the same filesystem as the real file) and then m …
1
vote
5answers
124 views
Is there a way to determine if free() would fail?
Is there a way to determine if free() would fail if ever called on a certain memory block pointer?
I have the following situation: a thread having access to a shared resource fail …
0
votes
0answers
14 views
Hotkey for Shellscript
Hello!
Under Linux I've always looked for some great simple software to take screenshots of a region, then upload it and throw the remote URL of the image to my clipboard. I got t …
2
votes
6answers
90 views
How to determine return address on stack ?
I know that if I am inside some fuction foo() which is called somewhere from bar() function, then this return address is pushed on stack.
#include <stdio.h>
void …
0
votes
1answer
41 views
Variable Corruption in bash script
Given the following code I am expecting the variable $NewFile to be /var/ftp/pub/faxes/myfile.txt.pdf
However my system is returning: ".pdf/ftp/pub/faxes/myfile.txt"
$Ext returns …
0
votes
5answers
63 views
undefined symbols ld: symbol not found
Everything is working except, this undefined symbols error:
bash-3.2$ make
g++ -Wall -g solvePlanningProblem.o Position.o AStarNode.o PRM.o PRMNode.o Worl.o SingleCircleWorld.o My …
1
vote
1answer
34 views
How to Create a Telnet Interface for an Application
I have come across a couple of proprietary applications on Linux platform which are administered via telnet. Remote telnet is not enabled but on the host you do a telnet session. Y …
7
votes
5answers
172 views
Hello world without using libraries
Hi,
This was an onsite interview question and I was baffled.
I was asked to write a Hello world program for linux.. That too
without using any libraries in the system. I think I …
3
votes
1answer
28 views
How do I determine if a pthread is alive?
How do I determine if a detached pthread is still alive ?
I have a communication channel with the thread (a uni-directional queue pointing outwards from the thread) but what happe …
0
votes
4answers
60 views
Reliable and efficient key--value database for Linux?
I need a fast, reliable and memory-efficient key--value database for Linux. My keys are about 128 bytes, and the maximum value size can be 128K or 256K. The database subsystem shou …
1
vote
1answer
32 views
Compiling a shared library with QT on Ubuntu 9.10
I am new to both QT and Linux C++ development (although I have many years C and C++ development experience on Windows).
I have some legacy C projects (source files and headers - [ …
