On FreeBSD make usb_proc_t the same as d_thred_t always.

This commit is contained in:
Warner Losh 2002-03-11 16:38:53 +00:00
parent 063f776327
commit a2df0b493e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=92096

View File

@ -72,8 +72,8 @@ int ufmdebug = 100;
#define DPRINTFN(n,x)
#endif
#if defined(__FreeBSD__) && __FreeBSD_version >= 500023
typedef struct thread usb_proc_t;
#ifdef __FreeBSD_version
typedef d_thread_t usb_proc_t;
#else
typedef struct proc usb_proc_t;
#endif