Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
5answers
98 views

Should my library handle SIGSEGV on bad pointer input?

I'm writing a small library that takes a FILE * pointer as input. If I immediately check this FILE * pointer and find it leads to a segfault, is it more correct to handle the signal, set errno, and ...
11
votes
2answers
1k 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 ...
10
votes
6answers
2k 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 ...
10
votes
2answers
1k 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 ...
7
votes
1answer
2k views

Python [Errno 98] Address already in use

In my Python socket program, I sometimes need to interrupt it with ctrl-c. When I do this, it does close the connection using socket.close() however when I try to reopen it I have to wait what seems ...
6
votes
3answers
3k 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 ...
4
votes
3answers
151 views

How can I return success or failure to the operating system in Haskell?

The simplest Unix tools are true and false, little programs that do nothing but return 0 and 1 respectively to the operating system and exit. An example in C might look like the below: // true - does ...
4
votes
8answers
786 views

Symbolic errno to String

Is there a command-line tool that will take a symbolic errno such as EINVAL and print the corresponding string, Invalid argument? I would like to avoid having to find that EINVAL is value 22 on my ...
4
votes
3answers
4k 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
347 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. ...
4
votes
11answers
6k 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 ?
4
votes
8answers
3k 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
1answer
106 views

Simple messaging application…getting errno 14: bad address

I am writing a simple messaging application in C using sockets. When I use function recvfrom, it returns -1 and sets errno = 14 which is Bad address (which I am printing at the end). The strange ...
3
votes
2answers
251 views

Which systems define EAGAIN and EWOULDBLOCK as different values?

Just curious. Which systems providing both EAGAIN and EWOULDBLOCK #define them as different values?
3
votes
2answers
109 views

getpwuid doesn't set errno

uid_t userId = getuid(); userId = 999; // cause error errno = 0; passwd* pw = getpwuid(userId); int n = errno; // pw = NULL, n = 0 Running this code in Linux, ...
3
votes
1answer
840 views

How to catch Errno::ECONNRESET class in “case when”?

My application (Ruby 1.9.2) may raise different exceptions, including net-connection breaks. I rescue Exception => e, then do case/when to handle them in defferent ways, but several errors go ...
3
votes
3answers
497 views

Access C global variable 'errno' from C#

Is it possible to access the "errno" variable in C# when P/Invoking? This is similar to Win32 GetLastError().
2
votes
2answers
160 views

This code is not thread-safe, isn't it?

I saw a piece of code like this and wondered whether this is thread-safe: int savedErrno = errno; //call some function that may modifies errno if (errno == xxx) foo(); errno = savedErrno; I ...
2
votes
1answer
274 views

tmpfile() on windows 7 x64

Running the following code on Windows 7 x64 #include <stdio.h> #include <errno.h> int main() { int i; FILE *tmp; for (i = 0; i < 10000; i++) { errno = 0; ...
2
votes
3answers
199 views

Invalid argument errno on connect()

I'm writing a program that basically perform server-client relationship. When i run my client (with the relevant params, when the server is already running), i get the following errno message: Invalid ...
2
votes
6answers
294 views

Exceptions vs. errno

As a C programmer, I don't have much experience with exceptions. I'm rather used to errno as a means of communicating errors across several function calls. That having said, I don't see the ...
2
votes
2answers
173 views

Do you recommend using errno in new C APIs?

Do you recommend using errno in new C APIs? Should other methods of reporting problems like http://developer.gnome.org/glib/stable/glib-Error-Reporting.html be used instead? What do you recommend?
2
votes
4answers
370 views

Where is the errnos defined? Example linux c/c++ program for i2c

When something goes wrong in a classic linux c/c++ software we have the magic variable errno that gives us a clue on what just went wrong. But where is those errors defined? Let's take a example ...
2
votes
2answers
682 views

Convert errno.h error values to Win32 GetLastError() equivalents

I'm writing a layer between a POSIX filesystem, and Windows using Dokan, and need to convert error values of the errno kind (EINVAL, ENOENT, etc.), to the Win32 equivalents you'd receive when calling ...
2
votes
4answers
3k 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.
2
votes
4answers
3k 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
0answers
58 views

Android 2.1 file i/o: pread fails with errno 22 (EINVAL, Invalid argument)

I'm doing simple file-copy operation using open(2), pread(2) and pwrite(2) as seen below (code simplified a bit). My problem is that the ::pread(2) functions fails returning -1, with [errno=22]. Note ...
1
vote
1answer
86 views

How to get an error message for errno value in python?

I am using the ctypes module to do some ptrace system calls on Linux, which actually works pretty well. But if I get an error I wanna provide some useful information. Therefore I do an get_errno() ...
1
vote
1answer
64 views

linux - convert errno to name

I am looking for an API to convert an errno integer to its name. For example: int fd; if((fd = open(path, O_RDONLY)) == -1)   printf("error: %d %s %s\n", errno, strerror(errno) ...
1
vote
2answers
73 views

Grep not found when call execl

I have here some code in C++. I want to execute the program grep in linux. When compiling, there are no errors. com.append("grep"); execl(com.c_str(), "-n", "-w", word.c_str(), list_files.at(i + ...
1
vote
3answers
196 views

Errno = 13 and how to debug this more efficiently?

I'm making an application and when i go from menu to an other activity that display image using the e3roid framework, i allways get this (logcat): D/PhoneWindow( 1562): DebugMonitor ...
1
vote
0answers
198 views

ruby / rails 3 ERROR Errno::ECONNABORTED

When I run my application, there is sometimes this error appears ERROR Errno::ECONNABORTED This is the log: [2011-06-05 18:17:21] ERROR Errno::ECONNABORTED: Une connexion établie a été ...
1
vote
1answer
817 views

Python urlopen connection aborted - urlopen error [Errno 10053]

I have some code that uses mechanize and beautifulsoup for web scraping some data. The code works fine on a test machine but the production machine is blocking the connection. The error i get is: ...
1
vote
3answers
165 views

perror generating unexpected errno value

I am experiencing an unexpected value of errno when using perror with glibc. When an non-existent file is specified as arg[1] it prints Error: 2 ( which isENOENT) as expected. However when the ...
1
vote
1answer
328 views

OSError's filename attribute unavailable?

I have the following code: except(OSError) as (errno, strerror, filename): print "OSError [%d]: %s at %s" % (errno, strerror, filename) It runs great unless it meets OSError num. 123 (The file ...
1
vote
1answer
396 views

Using GSoap returns EHOSTUNREACH when calling connect() through socket.h

I'm currently building an iPhone app based on Gsoap toolkit to connect to a webservice. Everything works fine except when I try to connect to my service after disconnecting and reconnecting 3g on the ...
1
vote
2answers
845 views

Mysql: ERROR 1005 (HY000): Can't create table 'receitascakephp.recipes' (errno: 150)

CREATE TABLE `users` ( `id` INT NOT NULL PRIMARY KEY AUTO_INCREMENT, `name` VARCHAR(255) NOT NULL, `username` VARCHAR(75) NOT NULL, `password` VARCHAR(75) NOT NULL, `image` VARCHAR(255) ...
1
vote
1answer
307 views

Getting “Illegal Seek” error after calling accept()

Well.. it's pretty much that, I seem to be getting a "Illegal Seek" error when checking my errno variable. The problem is that I have no idea of what that can mean. I know sockets are treated like ...
1
vote
4answers
614 views

detecting loops in symbolic links (c programming)

I'm looking to detect loops in symbolic links in a C program: $ ln -s self self $ ln -s a b $ ln -s b a Here's what I've got so far: #include <sys/stat.h> #include <stdio.h> #include ...
1
vote
3answers
828 views

Why return a negative errno? (e.g. return -EIO)

Another simple example: if (wpa_s->mlme.ssid_len == 0) return -EINVAL; Why the unary minus? Is this (usually) done for functions that return >0 on success and <(=)0 on failure, or is ...
1
vote
1answer
952 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
3answers
102 views

Create file in Ruby

I'm pretty new to Ruby and something has me entirely confused. I'm trying to create a new file and things don't seem to be working as I expect them too. Here's what I've tried: File.new "out.txt" ...
0
votes
1answer
23 views

Difference between ctypes' use_errno parameter to shared library classes and function prototypes?

The shared library classes CDLL, OleDLL, WinDLL each take the use_errno parameter. So do the function prototypes, CFUNCTYPE, WINFUNCTYPE. When and to which group do I pass use_errno=True and why?
0
votes
1answer
30 views

inotify_add_watch fails with errno ESUCCESS

On Linux 2.6.16, inotify_add_watch fails and sets errno to ESUCCESS (0) if the path does not exist. Where is this documented?
0
votes
3answers
195 views

Cannot assign requested address - possible causes?

I have a program that consists of a master server and distributed slave servers. The slave servers send status updates to the server, and if the server hasn't heard from a specific slave in a fixed ...
0
votes
1answer
49 views

linux system(3) call fails - how to know the errno-like error code?

When I call the system(char* Command) with some command and it fails, I should like to know the error code (and not to parse text output). For example, I run system("rm file") and 'file' does not ...
0
votes
1answer
35 views

os.path.join returning Errno22 in Enthought/Python

I'm working with a fairly complex Enthought/Python program that is returning this error: File "C:\Users\riddle\Desktop\FCI2\src\equation.py", line 41, in main fci_data = ...
0
votes
1answer
68 views

Should I use system_category or generic_category for errno on Unix?

C++0x has two predefined error_category objects: generic_category() and system_category(). From what I have understood so far, system_category() should be used for errors returned by the operating ...
0
votes
2answers
284 views

Bad file descriptor with BSD socket

I keep getting a "Bad file descriptor" error when I try to send data from my tcp server to my tcp client. What does this mean in terms of sockets? I have been at this for awhile now and I don't see ...
0
votes
0answers
730 views

Python urllib2 and [errno 10054] An existing connection was forcibly closed by the remote host and a few urllib2 problems

I've written a crawler that uses urllib2 to fetch urls. every few requests I get some weird behaviors, I've tried analyzing it with wireshark and couldn't understand the problem. getPAGE() is ...

1 2