diff options
| author | Hidetoshi Shimokawa <simokawa@FreeBSD.org> | 2007-10-25 06:09:15 +0000 |
|---|---|---|
| committer | Hidetoshi Shimokawa <simokawa@FreeBSD.org> | 2007-10-25 06:09:15 +0000 |
| commit | 31d6acf22d9e402f7c4f2b8ebb80e5bd5533a123 (patch) | |
| tree | c1b47adf4c5235a73d3a9ce589db97f4d29fd2bc /sys/dev/syscons/syscons.h | |
| parent | 124ce15708af2da6f5b525a18359db1d592f82d0 (diff) | |
Notes
Diffstat (limited to 'sys/dev/syscons/syscons.h')
| -rw-r--r-- | sys/dev/syscons/syscons.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/dev/syscons/syscons.h b/sys/dev/syscons/syscons.h index 45e96aec7a30..6d72b60b0f41 100644 --- a/sys/dev/syscons/syscons.h +++ b/sys/dev/syscons/syscons.h @@ -34,6 +34,9 @@ #ifndef _DEV_SYSCONS_SYSCONS_H_ #define _DEV_SYSCONS_SYSCONS_H_ +#include <sys/lock.h> +#include <sys/mutex.h> + /* machine-dependent part of the header */ #ifdef PC98 @@ -332,6 +335,7 @@ typedef struct scr_stat { int splash_save_mode; /* saved mode for splash screen */ int splash_save_status; /* saved status for splash screen */ + struct mtx scr_lock; /* mutex for sc_puts() */ #ifdef _SCR_MD_STAT_DECLARED_ scr_md_stat_t md; /* machine dependent vars */ #endif |
