1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-14 14:55:41 +00:00

Well, make intrhand2_t take a void * arg then. Matches i386.

This commit is contained in:
Matt Jacob 2000-04-26 06:48:54 +00:00
parent ea6e84950b
commit 09dc0c8c21
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=59640

View File

@ -67,7 +67,7 @@ typedef unsigned long uintfptr_t;
/* Interrupt mask (spl, xxx_imask, etc) */
typedef __uint32_t intrmask_t;
/* Interrupt handler function type - arg should be "void *" one day */
typedef void inthand2_t(int _unit);
/* Interrupt handler function type */
typedef void inthand2_t(void *);
#endif /* _MACHTYPES_H_ */