Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(216)

Side by Side Diff: src/trusted/service_runtime/generic/thread_suspension.c

Issue 10392005: Thread suspension: Implement for Linux (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Comment about docs Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 /*
2 * Copyright (c) 2012 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/shared/platform/nacl_log.h"
8 #include "native_client/src/trusted/service_runtime/nacl_app_thread.h"
9
10
11 void NaClAppThreadSetSuspendState(struct NaClAppThread *natp,
12 enum NaClSuspendState old_state,
13 enum NaClSuspendState new_state) {
14 UNREFERENCED_PARAMETER(natp);
15 UNREFERENCED_PARAMETER(old_state);
16 UNREFERENCED_PARAMETER(new_state);
17 }
18
19 void NaClUntrustedThreadsSuspendAll(struct NaClApp *nap) {
20 UNREFERENCED_PARAMETER(nap);
21
22 NaClLog(LOG_FATAL, "NaClUntrustedThreadsSuspendAll: Not implemented\n");
23 }
24
25 void NaClUntrustedThreadsResumeAll(struct NaClApp *nap) {
26 UNREFERENCED_PARAMETER(nap);
27
28 NaClLog(LOG_FATAL, "NaClUntrustedThreadsResumeAll: Not implemented\n");
29 }
OLDNEW
« no previous file with comments | « src/trusted/service_runtime/build.scons ('k') | src/trusted/service_runtime/linux/thread_suspension.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698