- Use sig_atomic_t for signal handler variables.

MFC after:	1 week
This commit is contained in:
Ulf Lilleengen 2009-05-29 20:01:50 +00:00
parent 2a5f2c1d7f
commit a0f163fd83
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=193059

View File

@ -297,8 +297,8 @@ int lfmode; /* lost & found directory creation mode */
ufs2_daddr_t n_blks; /* number of blocks in use */
ino_t n_files; /* number of files in use */
int got_siginfo; /* received a SIGINFO */
int got_sigalarm; /* received a SIGALRM */
sig_atomic_t got_siginfo; /* received a SIGINFO */
sig_atomic_t got_sigalarm; /* received a SIGALRM */
#define clearinode(dp) \
if (sblock.fs_magic == FS_UFS1_MAGIC) { \