Kill MOC and use QT_MOC instead
[bertos.git] / bertos / kern / proc.h
index db681ede2c828535dafad80376004d74f32552b2..6a4aff8be5dc8ff9eb9284de283ff75eb15cd159 100644 (file)
@@ -77,6 +77,14 @@ void proc_rename(struct Process *proc, const char *name);
 const char *proc_name(struct Process *proc);
 const char *proc_currentName(void);
 
+#if CONFIG_KERN_PRI
+       void proc_setPri(struct Process *proc, int pri);
+#else
+       INLINE void proc_setPri(UNUSED_ARG(struct Process *,proc), UNUSED_ARG(int, pri))
+       {
+       }
+#endif
+
 /**
  * Disable preemptive task switching.
  *