summaryrefslogtreecommitdiffstats
path: root/c_pgms/threaded_io/thread_fops.h
blob: 44479e66326dafd3a318bc405109dc18921fda87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <unistd.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <fcntl.h>
#include <errno.h>
#include <string.h>
#include <pthread.h>
#include <dirent.h>

void * open_thread (void *);
void * fstat_thread (void *);
void * read_thread (void *);
void * write_truncate_thread (void *);
void * chown_thread (void *);
void * open_lock_close (void *);
void * opendir_and_readdir ();

int thread1_ret;
int thread2_ret;
int thread3_ret;
int thread4_ret;
int thread5_ret;
int thread6_ret;
int thread7_ret;

struct open_attributes {
        char *filename;
        int flags;
        mode_t mode;
//        char *dirname;
};

typedef struct open_attributes open_t;

struct fstat_attributes {
        int fd;
        struct stat *buf;
};

typedef struct fstat_attributes fstat_t;

struct open_fstat {
        open_t *open;
        fstat_t *fstat;
};

typedef struct open_fstat oft;

#define open_validate_error_goto(filename, flag, mode)   do {           \
                pthread_mutex_lock (&info.mutex);                       \
                {                                                       \
                        info.num_open++;                                \
                }                                                       \
                pthread_mutex_unlock (&info.mutex);                     \
                fd = open (filename, flag, mode);                       \
                if (fd == -1) {                                         \
                        ret = -1;                                       \
                        goto out;                                       \
                } else {                                                \
                        pthread_mutex_lock (&info.mutex);               \
                        {                                               \
                                info.num_open_success++;                \
                        }                                               \
                        pthread_mutex_unlock (&info.mutex);             \
                }                                                       \
        } while (0);

typedef struct info {
        pthread_mutex_t mutex;
        unsigned int num_open;
        unsigned int num_open_success;
        unsigned int flocks;
        unsigned int flocks_success;
        unsigned int fcntl_locks;
        unsigned int fcntl_locks_success;
        unsigned int read;
        unsigned int read_success;
        unsigned int write;
        unsigned int write_success;
        unsigned int fstat;
        unsigned int fstat_success;
        unsigned int truncate;
        unsigned int truncate_success;
        unsigned int chown;
        unsigned int chown_success;
        unsigned int opendir;
        unsigned int opendir_success;
        unsigned int readdir;
        unsigned int readdir_success;
} info_t;

info_t info = {0,};