OLD | NEW |
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ | 1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
2 /* This Source Code Form is subject to the terms of the Mozilla Public | 2 /* This Source Code Form is subject to the terms of the Mozilla Public |
3 * License, v. 2.0. If a copy of the MPL was not distributed with this | 3 * License, v. 2.0. If a copy of the MPL was not distributed with this |
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | 4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
5 | 5 |
6 #ifndef primpl_h___ | 6 #ifndef primpl_h___ |
7 #define primpl_h___ | 7 #define primpl_h___ |
8 | 8 |
9 /* | 9 /* |
10 * HP-UX 10.10's pthread.h (DCE threads) includes dce/cma.h, which | 10 * HP-UX 10.10's pthread.h (DCE threads) includes dce/cma.h, which |
(...skipping 1956 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1967 PROffset64 offset, | 1967 PROffset64 offset, |
1968 PRUint32 len); | 1968 PRUint32 len); |
1969 #define _PR_MD_MEM_MAP _MD_MEM_MAP | 1969 #define _PR_MD_MEM_MAP _MD_MEM_MAP |
1970 | 1970 |
1971 extern PRStatus _PR_MD_MEM_UNMAP(void *addr, PRUint32 size); | 1971 extern PRStatus _PR_MD_MEM_UNMAP(void *addr, PRUint32 size); |
1972 #define _PR_MD_MEM_UNMAP _MD_MEM_UNMAP | 1972 #define _PR_MD_MEM_UNMAP _MD_MEM_UNMAP |
1973 | 1973 |
1974 extern PRStatus _PR_MD_CLOSE_FILE_MAP(PRFileMap *fmap); | 1974 extern PRStatus _PR_MD_CLOSE_FILE_MAP(PRFileMap *fmap); |
1975 #define _PR_MD_CLOSE_FILE_MAP _MD_CLOSE_FILE_MAP | 1975 #define _PR_MD_CLOSE_FILE_MAP _MD_CLOSE_FILE_MAP |
1976 | 1976 |
| 1977 extern PRStatus _PR_MD_SYNC_MEM_MAP( |
| 1978 PRFileDesc *fd, |
| 1979 void *addr, |
| 1980 PRUint32 len); |
| 1981 #define _PR_MD_SYNC_MEM_MAP _MD_SYNC_MEM_MAP |
| 1982 |
1977 /* Named Shared Memory */ | 1983 /* Named Shared Memory */ |
1978 | 1984 |
1979 /* | 1985 /* |
1980 ** Declare PRSharedMemory. | 1986 ** Declare PRSharedMemory. |
1981 */ | 1987 */ |
1982 struct PRSharedMemory | 1988 struct PRSharedMemory |
1983 { | 1989 { |
1984 char *ipcname; /* after conversion to native */ | 1990 char *ipcname; /* after conversion to native */ |
1985 PRSize size; /* from open */ | 1991 PRSize size; /* from open */ |
1986 PRIntn mode; /* from open */ | 1992 PRIntn mode; /* from open */ |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2108 | 2114 |
2109 extern ConnectListNode connectList[64]; | 2115 extern ConnectListNode connectList[64]; |
2110 | 2116 |
2111 extern PRUint32 connectCount; | 2117 extern PRUint32 connectCount; |
2112 | 2118 |
2113 #endif /* XP_BEOS */ | 2119 #endif /* XP_BEOS */ |
2114 | 2120 |
2115 PR_END_EXTERN_C | 2121 PR_END_EXTERN_C |
2116 | 2122 |
2117 #endif /* primpl_h___ */ | 2123 #endif /* primpl_h___ */ |
OLD | NEW |