clang-format

This commit is contained in:
2024-09-10 13:03:02 -04:00
parent 53c617d779
commit d66450e427
381 changed files with 28864 additions and 34170 deletions

View File

@@ -74,8 +74,8 @@ int splx(int);
/*
* Integer interrupt priority levels.
*/
#define IPL_NONE 0
#define IPL_HIGH 1
#define IPL_NONE 0
#define IPL_HIGH 1
/*
* Lower-level functions for explicitly raising and lowering
@@ -92,18 +92,9 @@ void spllower(int oldipl, int newipl);
////////////////////////////////////////////////////////////
SPL_INLINE
int
spl0(void)
{
return splx(IPL_NONE);
}
int spl0(void) { return splx(IPL_NONE); }
SPL_INLINE
int
splhigh(void)
{
return splx(IPL_HIGH);
}
int splhigh(void) { return splx(IPL_HIGH); }
#endif /* _SPL_H_ */