Sponsored Content
Full Discussion: errno
Top Forums Programming errno Post 302242393 by matrixmadhan on Wednesday 1st of October 2008 10:25:53 PM
Old 10-01-2008
Interesting !

I would assume 'yes'. I don't see a reason for ENOSPC and read system call failing due to that.
 

10 More Discussions You Might Find Interesting

1. Programming

Getting errno in a Multithreaded program

In Tru64 Unix, the 'errno' variable is not thread safe. Could anybody help me about how to make it thread safe or how to check 'errno' in a Multithreaded program ???? The Programming process is like this. There are some definite number of threads having their own task. There is one... (2 Replies)
Discussion started by: S.Vishwanath
2 Replies

2. Programming

errno pb

Hello, I need to make a lib with pthread, when I run my make file all is good. But when I run my test program, I test errno in the begining and is already set to 251. Is it normal ??? What can I modify in my Makefile to have errno set to 0 ??? Thanks $make gcc -D_REENTRANT -shared -fpic... (3 Replies)
Discussion started by: dts
3 Replies

3. Programming

Hi errno in sys/stat.h

How should I use errno in a c program and what info does it have . I am working with directories and files. So can any one tell me How to access errno?I am using the stat() function on \etc directory and I am alble to access only the half of the directories.I am not able to access other half and... (6 Replies)
Discussion started by: vijlak
6 Replies

4. Programming

does perror() set errno?

here the program gives a odd result: #include <stdio.h> int main(){ perror("first"); perror("next"); return 0; } result: first: Success next: Illegal seek why? any resonable explanation? i found no information about this in man pages. thanks in advance (2 Replies)
Discussion started by: ebd
2 Replies

5. Programming

need help about get errno [ENXIO] for mmap

from mmap manpage I get it's errors discription: The addresses specified by the range [off, off + len) are invalid for filedes. How could I trigger a ENXIO ? anyone can input the code? Lei (3 Replies)
Discussion started by: yanglei_fage
3 Replies

6. Linux

[Errno 256] No more mirrors to try.

Dear all, CentOS 6 After executing "yum update -y" command I am facing this error. Please help me out. thanks in advance. Full error & error code is given as follow: ... (7 Replies)
Discussion started by: saqlain.bashir
7 Replies

7. Programming

Getpwnam_r returning null with errno 25

I am calling getpwnam_r with all proper argument as below:- rv = getpwnam_r(name, result, buffer, buflen); This program runs fine on sol 8/9/10. But on sol 11 it returns NULL with errno set to 25 (#define ENOTTY 25 /* Inappropriate ioctl for device */) All boxes are... (2 Replies)
Discussion started by: Ranajit
2 Replies

8. Programming

Function open() sets errno

I am opening a text file using open() system call in O_RDONLY mode. open() returns me a valid handler but also sets errno to 13 i.e. EACCES(Permission denied). Question is when open() is returning a valid handler then why does it sets the errno? Should not errno be set only in case of error... (10 Replies)
Discussion started by: rupeshkp728
10 Replies

9. UNIX for Dummies Questions & Answers

[Ultrix] /etc/init failed, errno 2

I am running the gxemul software under cygwin, Just when installing the .iso image, I got the error shown in the picture. Any ideas what's happening? Thanks Jack (1 Reply)
Discussion started by: lucky7456969
1 Replies

10. AIX

Errno.h symbols

Hi, I need to look at a recent copy of /usr/include/errno.h from AIX 7.2 to check some symbols. In particular, I'm curious if it defines EOWNERDEAD and ENOTRECOVERABLE. Can someone who has access to 7.2 please check for me? Thanks! (1 Reply)
Discussion started by: topcat
1 Replies
mkdir(2)							System Calls Manual							  mkdir(2)

Name
       mkdir - make a directory file

Syntax
       #include <sys/types.h>
       #include <sys/stat.h>

       mkdir(path, mode)
       char *path;
       mode_t mode;

Description
       The  system  call  creates a new directory file with name path.	The mode of the new file is initialized from mode.  The protection part of
       the mode is modified by the process's mode mask.  For further information, see

       The directory's owner ID is set to the process's effective user ID.  The directory's group ID is set to that of	the  parent  directory	in
       which it is created.

       The  low-order  9 bits of mode are modified by the process's file mode creation mask: all bits set in the process's file mode creation mask
       are cleared.  For further information, see

Return Values
       A 0 return value indicates success.  A -1 return value indicates an error, and an error code is stored in errno.

Diagnostics
       The system call fails and a directory is not created if the following occurs:

       [EISDIR]    The named file is a directory, and the arguments specify it is to be opened for writing.

       [ENOTDIR]   A component of the path prefix is not a directory.

       [ENAMETOOLONG]
		   A component of a pathname exceeded 255 characters, or an entire pathname exceeded 1023 characters.

       [ENOENT]    A component of the path prefix does not exist or the path argument points to an empty string and  the  environment  defined	is
		   POSIX or SYSTEM_FIVE.

       [EACCES]    Search  permission  is  denied  for a component of the path prefix, or write permission is denied on the parent directory to be
		   created.

       [EROFS]	   The named file resides on a read-only file system.

       [EEXIST]    The named file exists.

       [EFAULT]    The path points outside the process's allocated address space.

       [ELOOP]	   Too many symbolic links were encountered in translating the pathname.

       [EIO]	   An I/O error occurred while reading from or writing to the file system.

       [EIO]	   An I/O error occurred while making the directory entry or allocating the inode.

       [ENOSPC]    The directory in which the entry for the new directory is being placed cannot be extended, because there is no  space  left	on
		   the file system containing the directory.

       [ENOSPC]    The new directory cannot be created, because there is no space left on the file system that will contain the directory.

       [ENOSPC]    There are no free inodes on the file system on which the directory is being created.

       [EDQUOT]    The	directory  in  which  the entry for the new directory is being placed cannot be extended, because the user's quota of disk
		   blocks on the file system containing the directory has been exhausted.

       [EDQUOT]    The new directory cannot be created, because the user's quota of disk blocks on the file system that will contain the directory
		   has been exhausted.

       [EDQUOT]    The user's quota of inodes on the file system on which the directory is being created has been exhausted.

       [ESTALE]    The	file  handle  given  in  the  argument	is invalid.  The file referred to by that file handle no longer exists or has been
		   revoked.

       [ETIMEDOUT] A "connect" request or remote file operation failed because the connected party did not properly respond after a period of time
		   that is dependent on the communications protocol.

       [EMLINK]    The link count of the parent directory would exceed {LINK_MAX}.

See Also
       chmod(2), stat(2), umask(2)

																	  mkdir(2)
All times are GMT -4. The time now is 04:47 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy