kernel/eka/memmodel/epoc/flexible/mmu/mm.h
changeset 201 43365a9b78a3
parent 109 b3a1d9898418
--- a/kernel/eka/memmodel/epoc/flexible/mmu/mm.h	Wed Jun 23 19:44:53 2010 +0300
+++ b/kernel/eka/memmodel/epoc/flexible/mmu/mm.h	Tue Jul 06 15:50:07 2010 +0300
@@ -1124,6 +1124,14 @@
 FORCE_INLINE void FlagClear(T& a,const T b,const T c,const T d)
 	{ a = (T)(a&~b&~c&~d); }
 
+/// Utility function to calculate the minimum of two unsigned integers
+FORCE_INLINE TUint MinU(TUint a, TUint b)
+	{ return a <= b ? a : b; }
+
+/// Utility function to calculate the maximum of two unsigned integers
+FORCE_INLINE TUint MaxU(TUint a, TUint b)
+	{ return a >= b ? a : b; }
+
 
 #include <memmodel/epoc/mmubase/kblockmap.h>