2010-07-20 23:53:49 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2008-2009 Cisco Systems, Inc. All rights reserved.
|
|
|
|
* Copyright (c) 2009 Sandia National Laboratories. All rights reserved.
|
|
|
|
*
|
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "opal_config.h"
|
|
|
|
|
2010-07-23 11:52:34 +04:00
|
|
|
#ifdef HAVE_UNISTD_H
|
2010-07-20 23:53:49 +04:00
|
|
|
#include <unistd.h>
|
2010-07-23 11:52:34 +04:00
|
|
|
#endif
|
2010-07-20 23:53:49 +04:00
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include "opal/util/fd.h"
|
|
|
|
#include "opal/constants.h"
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Simple loop over reading from a fd
|
|
|
|
*/
|
|
|
|
int opal_fd_read(int fd, int len, void *buffer)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
char *b = buffer;
|
|
|
|
|
|
|
|
while (len > 0) {
|
|
|
|
rc = read(fd, b, len);
|
|
|
|
if (rc < 0 && (EAGAIN == errno || EINTR == errno)) {
|
|
|
|
continue;
|
|
|
|
} else if (rc > 0) {
|
|
|
|
len -= rc;
|
|
|
|
b += rc;
|
|
|
|
} else {
|
|
|
|
return OPAL_ERR_IN_ERRNO;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return OPAL_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Simple loop over writing to an fd
|
|
|
|
*/
|
2010-07-21 15:01:16 +04:00
|
|
|
int opal_fd_write(int fd, int len, const void *buffer)
|
2010-07-20 23:53:49 +04:00
|
|
|
{
|
|
|
|
int rc;
|
2010-07-21 15:01:16 +04:00
|
|
|
const char *b = buffer;
|
2010-07-20 23:53:49 +04:00
|
|
|
|
|
|
|
while (len > 0) {
|
|
|
|
rc = write(fd, b, len);
|
|
|
|
if (rc < 0 && (EAGAIN == errno || EINTR == errno)) {
|
|
|
|
continue;
|
|
|
|
} else if (rc > 0) {
|
|
|
|
len -= rc;
|
|
|
|
b += rc;
|
|
|
|
} else {
|
|
|
|
return OPAL_ERR_IN_ERRNO;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return OPAL_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|