Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / native_client / src / minsfi / untrusted / sched_yield.c
1 /*
2  * Copyright (c) 2014 The Native Client Authors. All rights reserved.
3  * Use of this source code is governed by a BSD-style license that can be
4  * found in the LICENSE file.
5  */
6
7 #include "native_client/src/include/minsfi_syscalls.h"
8
9 int sched_yield(void) {
10   /* Not a very useful call. Reduce attack surface by leaving it out. */
11   return 0;
12 }