Sponsored Content
Full Discussion: Function open() sets errno
Top Forums Programming Function open() sets errno Post 302827027 by jim mcnamara on Thursday 27th of June 2013 06:20:52 PM
Old 06-27-2013
If you got a positive number from open(), then the errno was set earlier by some other call, unless your code does something interesting or untoward.... We do need to see some code please.

Note that system calls do not reset errno to zero, so if you do not reliably check returns codes, then it may not be possible to see where the error originated. system calls set errno ONLY when they have an error condition.
This User Gave Thanks to jim mcnamara For This Post:
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

function to test if file is open

I need to write a function that will work in sh/ksh shell that will test to see if a file has already been opened for writting by another user has anyone written something like this? (3 Replies)
Discussion started by: johnsonbryce
3 Replies

2. Virtualization and Cloud Computing

Clouds (Partially Order Sets) - Streams (Linearly Ordered Sets) - Part 2

timbass Sat, 28 Jul 2007 10:07:53 +0000 Originally posted in Yahoo! CEP-Interest Here is my follow-up note on posets (partially ordered sets) and tosets (totally or linearly ordered sets) as background set theory for event processing, and in particular CEP and ESP. In my last note, we... (0 Replies)
Discussion started by: Linux Bot
0 Replies

3. UNIX and Linux Applications

(lmgrd) Can't open /usr/tmp/.flexlm/lmgrdl.4081, errno: 24

We are a tool vendor and one of our users is getting this error. The user is using several macrovision(FLEXLM) license enabled products including ours. (lmgrd) Can't open /usr/tmp/.flexlm/lmgrdl.4081, errno: 24 At this time, it stops checking out licenses, and will not respond to query's.... (2 Replies)
Discussion started by: return_user
2 Replies

4. Programming

errno

Hey, Can I assume that for certain function calls, errno can never be set to a certain value. More specifically, can I assume that for if the stat function call fails, the errno can never be or "No space left on device." I am assuming that a read function cannot fail because of no space... (5 Replies)
Discussion started by: the_learner
5 Replies

5. UNIX and Linux Applications

Sybase help: Open client, bcp function

To begin: I use Linux The Problem: I need bcp functionality for scripts. Perl modules, such as Sybase:xfer, require ctlib which comes with Sybase Open Client. Talking with Sybase sales reps is an exercise in futility and hate. They know absolutely nothing about their own products and will... (0 Replies)
Discussion started by: Bubnoff
0 Replies

6. Programming

Open function of sys/stat.h

If a process already has the entire file locked for read and write using newstruct.l_type = F_WRLCK; what would happen if another process would try to open it in read only mode using open(filename, O_RDONLY); ? I want to check if the file exists and I want it to work even if another process has... (4 Replies)
Discussion started by: cyler
4 Replies

7. Shell Programming and Scripting

Help !! perl open function

Help Please perl Gurus, I am trying to add ungrouped passengers in a group and I creating a script however it fails on first step only I tried all the options it returns following error. syntax error at junki line 4, near "open " Execution of junki aborted due to compilation errors. ... (2 Replies)
Discussion started by: dynamax
2 Replies

8. Shell Programming and Scripting

Open file function

Hello all, just a quick little part of code i'm writing to check if the file i'm writing too in my automatic process is not being written too manually. #!/bin/bash FUSER=$(/sbin/fuser -s /toto.tmp >/dev/null 2>&1) LSOF=$(/usr/sbin/lsof | grep -q "toto.tmp") PGREP=$(pgrep -f "toto.tmp" >... (6 Replies)
Discussion started by: maverick72
6 Replies

9. HP-UX

Failed to open tape device /dev/rmt/0mn:Device busy (errno = 16)

Hi, Unable to make tape backup, please help. /opt/ignite/bin/make_tape_recovery -a /dev/rmt/?mn -I -v -m tar -x inc_entire=vg00 * Creating local directories for configuration files and archive. ======= 04/25/16 16:28:08 IST Started /opt/ignite/bin/make_tape_recovery. (Mon... (4 Replies)
Discussion started by: anuragr
4 Replies
mq_open(3)						     Library Functions Manual							mq_open(3)

NAME
mq_open - Establishes the connection between a message queue and a message queue descriptor (P1003.1b) LIBRARY
Realtime Library (librt.so, librt.a) SYNOPSIS
#include <mqueue.h> mqd_t mq_open ( const char *name, int oflag, ...); PARAMETERS
*name Specifies a pointer to the name of a string naming the message queue. The string can be a pathname. oflag Specifies the request for receive or send access to the message queue, as well as the blocking attributes of the resulting open descriptor for the calling process. This value of this argument is the bitwise inclusive OR of the values from the following list of flags. An application must specify exactly one of the first three flags: O_RDONLY Opens the message queue for receiving messages. This enables calls to the mq_receive function but not calls to the mq_send function for the calling process. Note that each process has its own read/write access to a queue. O_WRONLY Opens the queue for sending messages. This enables calls to the mq_send function but not calls to the mq_receive function for the calling process. O_RDWR Opens the queue for receiving and sending messages for the calling process. Any combination of the following flags is valid: O_CREAT Creates a message queue. Use of this flag requires specification of two additional arguments: mode, which is of type mode_t, and attr, which points to a mq_attr structure. If name has already been used to create a message queue that is still open, this flag has no effect, except as noted under O_EXCL. Otherwise, a message queue is created. The ID of the message queue becomes the effective user ID, and the group ID of the message queue becomes the effective group ID of the process. The mode argument sets the file permission bits. If the attr argument is NULL, the function creates the message queue with default attributes. If the attr argument is not NULL, and the calling process has appropriate privilege or per- mission, the message queue attributes are set as if the mq_setattr function were called with the attribute argument attr. If the attr argument is not NULL, but the calling process does not have the appropriate privilege or permission, the mq_open argument fails and returns an error. O_EXCL Prevents the opening of a message queue if O_CREAT is set and the message queue already exists. Use this flag only in com- bination with O_CREAT. O_NONBLOCK Allows calls to the mq_send and mq_receive functions to continue execution while waiting for resources or messages. When this flag is set and resources are not available, the mq_send and mq_receive functions fail and errno is set to EAGAIN. This flag is a per-open descriptor flag, and applies to the calling process only. Each process has its own blocking attributes for a queue. DESCRIPTION
The mq_open function establishes the connection between a message queue and a message queue descriptor. This function creates a new open message queue description that refers to a specified message queue and a message queue descriptor that refers to that open message queue description. The message queue descriptor is then available for use by other functions for reference to the message queue from the calling process. RETURN VALUES
On successful completion, this function returns a message queue descriptor. Otherwise, the function returns -1 and sets errno to indicate the error. ERRORS
The mq_open function fails under the following conditions: [EACCES] The message queue exists and the permissions specified by oflag are denied, or the message queue does not exist and permis- sion to create the message queue is denied. [EEXIST] O_CREAT and O_EXCL are set, and the named message queue already exists. [EFAULT] An internal virtual memory error occurred. [EINTR] The mq_open operation was interrupted by a signal. [EINVAL] The mq_open operation is not supported for the given name. O_CREAT was specified in oflag, the value of attr is not NULL, and either mq_maxmsg or mq_msgsize was less than or equal to zero. [EMFILE] Too many message queue descriptors or file descriptors are currently in use by this process. [ENAMETOOLONG] The length of the name string exceeds {PATH_MAX}, or a pathname component is longer than {NAME_MAX} while {_POSIX_NO_TRUNC} is in effect. [ENFILE] Too many message queues are currently open in the system. [ENOENT] O_CREAT is not set and the named message queue does not exist. [ENOSPC] There is insufficient space for the creation of the new message queue. RELATED INFORMATION
Functions: mq_close(3), mq_getattr(3), mq_receive(3), mq_send(3), mq_setattr(3), mq_unlink(3) Guide to Realtime Programming delim off mq_open(3)
All times are GMT -4. The time now is 07:37 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy