XINU
device
lfs
lflcontrol.c
Go to the documentation of this file.
1
/* lflcontrol.c - lflcontrol */
2
3
#include <
xinu.h
>
4
5
/*------------------------------------------------------------------------
6
* lflcontrol - Provide control functions for a local file pseudo-device
7
*------------------------------------------------------------------------
8
*/
9
devcall
lflcontrol
(
10
struct
dentry
*devptr,
/* Entry in device switch table */
11
int32
func,
/* A control function */
12
int32
arg1,
/* Argument #1 */
13
int32
arg2
/* Argument #2 */
14
)
15
{
16
struct
lflcblk
*lfptr;
/* Ptr to open file table entry */
17
int32
retval;
/* Return value from func. call */
18
19
/* Obtain exclusive use of the file */
20
21
lfptr = &
lfltab
[devptr->
dvminor
];
22
wait
(lfptr->
lfmutex
);
23
24
/* If file is not open, return an error */
25
26
if
(lfptr->
lfstate
!=
LF_USED
) {
27
signal
(lfptr->
lfmutex
);
28
return
SYSERR
;
29
}
30
31
switch
(func) {
32
33
/* Truncate a file */
34
35
case
LF_CTL_TRUNC
:
36
wait
(
Lf_data
.
lf_mutex
);
37
retval =
lftruncate
(lfptr);
38
signal
(
Lf_data
.
lf_mutex
);
39
signal
(lfptr->
lfmutex
);
40
return
retval;
41
42
default
:
43
kprintf
(
"lfcontrol: function %d not valid\n\r"
, func);
44
signal
(lfptr->
lfmutex
);
45
return
SYSERR
;
46
}
47
}
kprintf
syscall kprintf(char *fmt,...)
ポーリングI/Oを使用して、フォーマットされた文字列をコンソールに出力する。
Definition:
kprintf.c:98
lfdata::lf_mutex
sid32 lf_mutex
Definition:
lfilesys.h:132
dentry::dvminor
int32 dvminor
Definition:
conf.h:8
xinu.h
全てのシステムヘッダファイルをインクルードする。
lflcontrol
devcall lflcontrol(struct dentry *devptr, int32 func, int32 arg1, int32 arg2)
Definition:
lflcontrol.c:9
SYSERR
#define SYSERR
処理が失敗した場合
Definition:
kernel.h:79
lflcblk
Definition:
lfilesys.h:142
Lf_data
struct lfdata Lf_data
Definition:
lfsinit.c:5
LF_USED
#define LF_USED
Definition:
lfilesys.h:53
lfltab
struct lflcblk lfltab[]
Definition:
lflinit.c:5
lflcblk::lfmutex
sid32 lfmutex
Definition:
lfilesys.h:146
LF_CTL_TRUNC
#define LF_CTL_TRUNC
Definition:
lfilesys.h:175
dentry
Definition:
conf.h:6
lftruncate
status lftruncate(struct lflcblk *)
Definition:
lftruncate.c:10
lflcblk::lfstate
byte lfstate
Definition:
lfilesys.h:144
int32
int int32
符号あり32ビット整数(int)
Definition:
kernel.h:11
wait
syscall wait(sid32)
Definition:
wait.c:9
signal
syscall signal(sid32)
セマフォにシグナルを送り、待機プロセスがある場合は解除する。
Definition:
signal.c:18
devcall
int32 devcall
デバイスコール関数 返り値の型
Definition:
kernel.h:49
Generated by
1.8.13