Mercurial > hg > xemacs-beta
comparison src/process-nt.c @ 5930:a0d9bfe304de cygwin
more 64-bit patches for VS, not sure of many of them
author | Henry Thompson <ht@markup.co.uk> |
---|---|
date | Wed, 09 Dec 2015 10:35:23 +0000 |
parents | a216b3c2b09e |
children | e2fae7783046 |
comparison
equal
deleted
inserted
replaced
5929:f5dfcf2323bc | 5930:a0d9bfe304de |
---|---|
168 if (sizeof(mbi) != VirtualQueryEx (h_process, | 168 if (sizeof(mbi) != VirtualQueryEx (h_process, |
169 #if defined (_X86_) | 169 #if defined (_X86_) |
170 (LPDWORD)context.Esp - 1, | 170 (LPDWORD)context.Esp - 1, |
171 #elif defined (_ALPHA_) | 171 #elif defined (_ALPHA_) |
172 (LPDWORD)context.IntSp - 1, | 172 (LPDWORD)context.IntSp - 1, |
173 #elif defined (_AMD64_) | |
174 (LPDWORD)context.Rsp - 1, /* HST guessing */ | |
173 #else | 175 #else |
174 #error Unknown processor architecture | 176 #error Unknown processor architecture |
175 #endif | 177 #endif |
176 &mbi, sizeof(mbi))) | 178 &mbi, sizeof(mbi))) |
177 goto failure; | 179 goto failure; |