0
votes
1answer
11 views
What does this error mean? - httperf: connection failed with unexpected error 105
Does anyone know what this httperf error means? Is this having a negative effect on my tests?
httperf: connection failed with unexpected error 105
0
votes
1answer
17 views
In which include file EPERM (returned by pthread_mutex_unlock) error code is declared?
Can anyone give me the right direction for this, as I am not able to find the declaration of EPERM in either pthread.h or errno.h (on openSUSE Linux). I found this in asm-generic/errno-base.h but is …
0
votes
2answers
69 views
Troubles with errno.h
I'm working with Rad Hat 8.0, trying to make changes to the kernel, and I'm at the compilation stage.
I have a header in include/linux where I define wrapper functions, and they use errno. I included …
1
vote
4answers
138 views
How to convert errno in UNIX to corresponding string?
Is there any function in UNIX to the convert errno to its corresponding string for e.g. EIDRM to "EIDRM". Its very annoying to debug to check for errors with these integer errnos.
1
vote
2answers
165 views
MySQL Creating tables with Foreign Keys giving errno: 150
I am trying to create a table in MySQL with two foreign keys, which reference the primary keys in 2 other tables, but I am getting an errno: 150 error and it will not create the table.
Here is the …
0
votes
4answers
192 views
How to detect if errno_t is defined?
I'm compiling code using gcc that comes from Visual C++ 2008. The code is using errno_t, but in some versions of gcc headers including <errno.h> doesn't define the type. How do I detect if the …
1
vote
3answers
414 views
Python Exception handling
C has perror and errno, which print and store the last error encountered. This is convenient when doing file io as I do not have to fstat() every file that fails as an argument to fopen() to present …
4
votes
6answers
152 views
Where can I see the list of functions that interact with errno?
In the book "The C Programming Language" it says:
"Many of the functions in the library set status indicators when error or end of file occur. These
indicators may be set and tested explicitly. …
6
votes
5answers
532 views
Access to errno from Python?
I am stuck with a fairly complex Python module that does not return useful error codes (it actually fails disturbingly silently). However, the underlying C library it calls sets errno.
Normally errno …
4
votes
7answers
756 views
Unit testing error conditions - EINTR
In short, how do you unit test an error condition such as EINTR on a system call.
One particular example I'm working on, which could be a case all by itself, is whether it's necessary to call fclose …
3
votes
9answers
538 views
How to know what the errno means ?
When calling execl(...) I get an errno=2. What does it mean ? How can I know the meaning of this errno ?
9
votes
2answers
528 views
EWOULDBLOCK equivalent errno under Windows Perl
G'day Stackoverflowers,
I'm the author of Perl's autodie pragma, which changes Perl's built-ins to throw exceptions on failure. It's similar to Fatal, but with lexical scope, an extensible exception …
4
votes
2answers
210 views
Is there a way to use errno safely in a multi-threaded application?
If you are writing a multi-threaded application that uses system/library calls that make use of errno to indicate the error type, is there a safe way to use errno? If not, is there some other way to …
0
votes
0answers
66 views
Is there a Windows equivalent of EDQUOT?
I'm porting some C++ code from UNIX to Windows which detects the occurrence of the EDQUOT error, which indicates that there was an unsuccessful attempt to exceed the current user's disk quota. Visual …
0
votes
4answers
212 views
to throw, to return or to errno?
i am creating a system. What i want to know is if a msg is unsupported what should it do? should i throw saying unsupported msg? should i return 0 or -1? or should i set an errno (base->errno_). Some …
