OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 // A mini-zygote specifically for Native Client. | |
6 | |
7 // Please do not include Chrome-specific include files here. | |
8 // This include file is meant to be useable outside of Chrome. | |
agl
2011/06/10 17:28:03
s/useable/usable/
Brad Chen
2011/06/14 00:16:01
Done.
| |
9 #ifndef CHROME_NACL_NACL_HELPER_LINUX_H_ | |
10 #define CHROME_NACL_NACL_HELPER_LINUX_H_ | |
11 #pragma once | |
12 | |
13 static const char kNaClHelperMagic[] = "NACLHELPER_OK"; | |
14 static const char kNaClChildMagic[] = "NACLCHILD_OK"; | |
15 static const char kNaClForkRequest[] = "NACLFORK"; | |
16 static const int kZygoteDescriptor = 3; | |
17 | |
18 #endif // CHROME_NACL_NACL_HELPER_LINUX_H_ | |
OLD | NEW |