comparison dyncallback/dyncall_thunk_arm64.h @ 155:bbefb8b8e74c

- sparc32 thunk code - replaced some c++ comments with old c ones - whitespace cosmetics
author cslag
date Thu, 24 Nov 2016 23:47:31 +0000
parents 3e629dc19168
children f5577f6bf97a
comparison
equal deleted inserted replaced
154:3729a99ef03c 155:bbefb8b8e74c
24 */ 24 */
25 25
26 #ifndef DYNCALL_THUNK_ARM64_H 26 #ifndef DYNCALL_THUNK_ARM64_H
27 #define DYNCALL_THUNK_ARM64_H 27 #define DYNCALL_THUNK_ARM64_H
28 28
29 struct DCThunk_ 29 struct DCThunk_ /* off size */
30 { 30 { /* ----|---- */
31 // off size 31 unsigned int code[4]; /* 0 16 */
32 //-----|---------- 32 void (*entry)(); /* 16 8 */
33 unsigned int code[4]; // 0 16 33 void* reserved; /* 24 8 */
34 void (*entry)(); // 16 8 34 }; /* 32 total */
35 void* reserved; // 24 8
36
37 // 32 total size
38
39 };
40 35
41 #endif /* DYNCALL_THUNK_ARM64_H */ 36 #endif /* DYNCALL_THUNK_ARM64_H */
42 37