summaryrefslogtreecommitdiffstats
path: root/include/sched.h
blob: 4dadff20696e222c2601c1683335284a1477bcb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* SPDX License Identifier: GPL-2.0 */
#ifndef __BAREBOX_SCHED_H_
#define __BAREBOX_SCHED_H_

#ifdef CONFIG_HAS_SCHED
void resched(void);
#else
static inline void resched(void)
{
}
#endif

#endif