Files
mop3/kernel/device/def_device_op.h
kamkow1 e5ebd7f3ba
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 2m21s
Build documentation / build-and-deploy (push) Successful in 54s
Use a big-lock for kernel sychronization instead of fine-grained locking
2026-04-27 18:06:02 +02:00

20 lines
981 B
C

#ifndef _KERNEL_DEVICE_DEF_DEVICE_OP_H
#define _KERNEL_DEVICE_DEF_DEVICE_OP_H
#include <aux/compiler.h>
#define DEFINE_DEVICE_OP(name) \
int name(struct device* UNUSED device, struct proc* UNUSED proc, \
struct reschedule_ctx* UNUSED rctx, void* UNUSED a1, void* UNUSED a2, void* UNUSED a3, \
void* UNUSED a4)
#define DEFINE_DEVICE_INIT(name) \
bool name(struct device* UNUSED device, void* UNUSED arg, struct proc* UNUSED proc, \
struct reschedule_ctx* UNUSED rctx)
#define DEFINE_DEVICE_FINI(name) \
void name(struct device* UNUSED device, struct proc* UNUSED proc, \
struct reschedule_ctx* UNUSED rctx)
#endif // _KERNEL_DEVICE_DEF_DEVICE_OP_H