#include <stdio.h>
#include <stdarg.h>
#include <sys/ioctl.h>
#include <string.h>
#include "jassert.h"
#include "jfilesystem.h"
#include "jconvert.h"
#include "pidwrappers.h"
#include "util.h"
#include "virtualpidtable.h"
#include "dmtcp.h"
#include "pid.h"
#include <unistd.h>
Go to the source code of this file.
|
int | open (const char *path, int flags,...) |
|
int | open64 (const char *path, int flags,...) |
|
FILE * | fopen (const char *path, const char *mode) |
|
FILE * | fopen64 (const char *path, const char *mode) |
|
int | fclose (FILE *fp) |
|
int | __xstat (int vers, const char *path, struct stat *buf) |
|
int | __xstat64 (int vers, const char *path, struct stat64 *buf) |
|
int | __lxstat (int vers, const char *path, struct stat *buf) |
|
int | __lxstat64 (int vers, const char *path, struct stat64 *buf) |
|
ssize_t | readlink (const char *path, char *buf, size_t bufsiz) |
|
char * | realpath (const char *path, char *resolved_path) |
|
char * | __realpath (const char *path, char *resolved_path) |
|
char * | __realpath_chk (const char *path, char *resolved_path, size_t resolved_len) |
|
char * | canonicalize_file_name (const char *path) |
|
int | access (const char *path, int mode) |
|
int | ioctl (int d, unsigned long int request,...) |
|
#define open open_always_inline |
#define open64 open64_always_inline |
#define PROC_PREFIX "/proc/" |
#define readlink readlink_always_inline |
#define realpath realpath_always_inline |
int __lxstat |
( |
int |
vers, |
|
|
const char * |
path, |
|
|
struct stat * |
buf |
|
) |
| |
int __lxstat64 |
( |
int |
vers, |
|
|
const char * |
path, |
|
|
struct stat64 * |
buf |
|
) |
| |
char* __realpath |
( |
const char * |
path, |
|
|
char * |
resolved_path |
|
) |
| |
char* __realpath_chk |
( |
const char * |
path, |
|
|
char * |
resolved_path, |
|
|
size_t |
resolved_len |
|
) |
| |
int __xstat |
( |
int |
vers, |
|
|
const char * |
path, |
|
|
struct stat * |
buf |
|
) |
| |
int __xstat64 |
( |
int |
vers, |
|
|
const char * |
path, |
|
|
struct stat64 * |
buf |
|
) |
| |
int access |
( |
const char * |
path, |
|
|
int |
mode |
|
) |
| |
char* canonicalize_file_name |
( |
const char * |
path) | |
|
FILE* fopen |
( |
const char * |
path, |
|
|
const char * |
mode |
|
) |
| |
FILE* fopen64 |
( |
const char * |
path, |
|
|
const char * |
mode |
|
) |
| |
int ioctl |
( |
int |
d, |
|
|
unsigned long int |
request, |
|
|
|
... |
|
) |
| |
int open |
( |
const char * |
path, |
|
|
int |
flags, |
|
|
|
... |
|
) |
| |
int open64 |
( |
const char * |
path, |
|
|
int |
flags, |
|
|
|
... |
|
) |
| |
ssize_t readlink |
( |
const char * |
path, |
|
|
char * |
buf, |
|
|
size_t |
bufsiz |
|
) |
| |
char* realpath |
( |
const char * |
path, |
|
|
char * |
resolved_path |
|
) |
| |