Chromium Code Reviews| OLD | NEW |
|---|---|
| (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, | |
|
bradn
2012/05/18 19:56:35
Did you want to consider just adding this as an os
Mark Seaborn
2012/05/21 15:03:57
I think it would be a little misleading to put non
| |
| 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 } | |
| OLD | NEW |