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 #ifndef NATIVE_CLIENT_SRC_SERVICE_RUNTIME_INCLUDE_SYS_NACL_TEST_CRASH_H_ 8 #define NATIVE_CLIENT_SRC_SERVICE_RUNTIME_INCLUDE_SYS_NACL_TEST_CRASH_H_ 1 9 10 /* Argument values for use with the test_crash syscall. */ 11 #define NACL_TEST_CRASH_MEMORY 1 12 #define NACL_TEST_CRASH_LOG_FATAL 2 13 #define NACL_TEST_CRASH_CHECK_FAILURE 3 14 15 #endif 16