PERFORCE change 231360 for review
    Jonathan Anderson 
    jonathan at FreeBSD.org
       
    Tue Jul 23 00:50:13 UTC 2013
    
    
  
http://p4web.freebsd.org/@@231360?ac=10
Change 231360 by jonathan at jonathan-on-zenith on 2013/07/23 00:49:20
	Use sys/limits.h in the kernel, not limits.h.
	
	This has a feeling of deja vu; I've definitely made a change like this in the past day or two.
Affected files ...
.. //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/include/tesla.h#8 edit
Differences ...
==== //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/include/tesla.h#8 (text+ko) ====
@@ -73,7 +73,11 @@
 #ifdef	__TESLA_ANALYSER__
 
 #include <sys/types.h>
+#ifdef _KERNEL
+#include <sys/limits.h>
+#else
 #include <limits.h>
+#endif
 
 /**
  * TESLA events can be serialised either with respect to the current thread
    
    
More information about the p4-projects
mailing list