1
0
mirror of https://github.com/golang/go synced 2024-11-19 02:04:42 -07:00

make acid build on linux.

recognize symbol table info again on 64-only linux.

R=r
DELTA=11  (9 added, 0 deleted, 2 changed)
OCL=15486
CL=15486
This commit is contained in:
Russ Cox 2008-09-18 15:06:14 -07:00
parent 13f3149a01
commit 899c5281da
2 changed files with 11 additions and 2 deletions

View File

@ -796,11 +796,11 @@ error:
read(fd, buf, sh[ep->shstrndx].size);
for(i = 0; i < ep->shnum; i++) {
if (sh[i].type == 2 && strcmp(&buf[sh[i].name], ".gosymtab") == 0) {
if (strcmp(&buf[sh[i].name], ".gosymtab") == 0) {
symsize = sh[i].size;
symoff = sh[i].offset;
}
if (sh[i].type == 2 && strcmp(&buf[sh[i].name], ".gopclntab") == 0) {
if (strcmp(&buf[sh[i].name], ".gopclntab") == 0) {
if (sh[i].offset != symoff+symsize) {
werrstr("pc line table not contiguous with symbol table");
free(buf);

View File

@ -523,3 +523,12 @@ ptraceerr:
werrstr("ptrace %s register laddr=%d pid=%d: %r", isr ? "read" : "write", laddr, map->pid);
return -1;
}
char*
procstatus(int pid)
{
if(isstopped(pid))
return "Stopped";
return "Running";
}