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/trusted/debug_stub/thread.h"
8 :
9 : /*
10 : * Define the OS specific portions of IThread interface.
11 : */
12 :
13 : namespace port {
14 :
15 84 : int IThread::ExceptionToSignal(int exception_code) {
16 84 : return exception_code;
17 : }
18 :
19 : } // End of port namespace
20 :
|