mars/mars_device_sio.h
Thomas Schoebel-Theuer 048ef32de3 import mars-51.tgz
2013-01-08 15:54:04 +01:00

44 lines
772 B
C

// (c) 2010 Thomas Schoebel-Theuer / 1&1 Internet AG
#ifndef MARS_DEVICE_SIO_H
#define MARS_DEVICE_SIO_H
#define WITH_THREAD 64
struct device_sio_mref_aspect {
GENERIC_ASPECT(mref);
struct list_head io_head;
};
struct device_sio_brick {
MARS_BRICK(device_sio);
};
struct device_sio_input {
MARS_INPUT(device_sio);
};
struct sio_threadinfo {
struct device_sio_output *output;
struct list_head mref_list;
struct task_struct *thread;
wait_queue_head_t event;
spinlock_t lock;
unsigned long last_jiffies;
};
struct device_sio_output {
MARS_OUTPUT(device_sio);
// parameters
bool o_direct;
bool o_fdsync;
// private
struct file *filp;
struct sio_threadinfo tinfo[WITH_THREAD+1];
spinlock_t g_lock;
int index;
};
MARS_TYPES(device_sio);
#endif