Fix the type signature for sx(9) DTrace subroutines.

MFC after:	1 week
This commit is contained in:
Mark Johnston 2017-11-24 19:05:45 +00:00
parent dbe4541db2
commit eb381edab7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=326177

View File

@ -1315,7 +1315,7 @@ dt_vopen(int version, int flags, int *errp,
snprintf(intmtx_str, sizeof(intmtx_str), "int(%s`struct mtx *)",p);
snprintf(threadmtx_str, sizeof(threadmtx_str), "struct thread *(%s`struct mtx *)",p);
snprintf(rwlock_str, sizeof(rwlock_str), "int(%s`struct rwlock *)",p);
snprintf(sxlock_str, sizeof(sxlock_str), "int(%s`struct sxlock *)",p);
snprintf(sxlock_str, sizeof(sxlock_str), "int(%s`struct sx *)",p);
}
#endif