2009-05-26 12:18:42 -06:00
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2009-06-10 12:53:07 -06:00
|
|
|
#include "runtime.h"
|
2011-12-16 13:33:58 -07:00
|
|
|
#include "defs_GOOS_GOARCH.h"
|
|
|
|
#include "signals_GOOS.h"
|
|
|
|
#include "os_GOOS.h"
|
2009-06-10 12:53:07 -06:00
|
|
|
|
2010-04-05 13:51:09 -06:00
|
|
|
void
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
runtime·dumpregs(Sigcontext *r)
|
2010-04-05 13:51:09 -06:00
|
|
|
{
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
runtime·printf("trap %x\n", r->trap_no);
|
|
|
|
runtime·printf("error %x\n", r->error_code);
|
|
|
|
runtime·printf("oldmask %x\n", r->oldmask);
|
|
|
|
runtime·printf("r0 %x\n", r->arm_r0);
|
|
|
|
runtime·printf("r1 %x\n", r->arm_r1);
|
|
|
|
runtime·printf("r2 %x\n", r->arm_r2);
|
|
|
|
runtime·printf("r3 %x\n", r->arm_r3);
|
|
|
|
runtime·printf("r4 %x\n", r->arm_r4);
|
|
|
|
runtime·printf("r5 %x\n", r->arm_r5);
|
|
|
|
runtime·printf("r6 %x\n", r->arm_r6);
|
|
|
|
runtime·printf("r7 %x\n", r->arm_r7);
|
|
|
|
runtime·printf("r8 %x\n", r->arm_r8);
|
|
|
|
runtime·printf("r9 %x\n", r->arm_r9);
|
|
|
|
runtime·printf("r10 %x\n", r->arm_r10);
|
|
|
|
runtime·printf("fp %x\n", r->arm_fp);
|
|
|
|
runtime·printf("ip %x\n", r->arm_ip);
|
|
|
|
runtime·printf("sp %x\n", r->arm_sp);
|
|
|
|
runtime·printf("lr %x\n", r->arm_lr);
|
|
|
|
runtime·printf("pc %x\n", r->arm_pc);
|
|
|
|
runtime·printf("cpsr %x\n", r->arm_cpsr);
|
|
|
|
runtime·printf("fault %x\n", r->fault_address);
|
2010-04-05 13:51:09 -06:00
|
|
|
}
|
2009-06-10 12:53:07 -06:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This assembler routine takes the args from registers, puts them on the stack,
|
|
|
|
* and calls sighandler().
|
|
|
|
*/
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
extern void runtime·sigtramp(void);
|
|
|
|
extern void runtime·sigreturn(void); // calls runtime·sigreturn
|
2009-06-10 12:53:07 -06:00
|
|
|
|
2010-04-05 13:51:09 -06:00
|
|
|
void
|
2011-02-23 12:47:42 -07:00
|
|
|
runtime·sighandler(int32 sig, Siginfo *info, void *context, G *gp)
|
2010-04-05 13:51:09 -06:00
|
|
|
{
|
|
|
|
Ucontext *uc;
|
2010-04-08 19:15:30 -06:00
|
|
|
Sigcontext *r;
|
2012-02-13 18:16:57 -07:00
|
|
|
SigTab *t;
|
2010-04-08 19:15:30 -06:00
|
|
|
|
|
|
|
uc = context;
|
|
|
|
r = &uc->uc_mcontext;
|
|
|
|
|
2011-03-23 09:43:37 -06:00
|
|
|
if(sig == SIGPROF) {
|
|
|
|
runtime·sigprof((uint8*)r->arm_pc, (uint8*)r->arm_sp, (uint8*)r->arm_lr, gp);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-02-13 18:16:57 -07:00
|
|
|
t = &runtime·sigtab[sig];
|
|
|
|
if(info->si_code != SI_USER && (t->flags & SigPanic)) {
|
|
|
|
if(gp == nil)
|
|
|
|
goto Throw;
|
2010-04-08 19:15:30 -06:00
|
|
|
// Make it look like a call to the signal func.
|
|
|
|
// Have to pass arguments out of band since
|
|
|
|
// augmenting the stack frame would break
|
|
|
|
// the unwinding code.
|
|
|
|
gp->sig = sig;
|
|
|
|
gp->sigcode0 = info->si_code;
|
|
|
|
gp->sigcode1 = r->fault_address;
|
2011-01-18 12:15:11 -07:00
|
|
|
gp->sigpc = r->arm_pc;
|
2010-04-08 19:15:30 -06:00
|
|
|
|
|
|
|
// If this is a leaf function, we do smash LR,
|
|
|
|
// but we're not going back there anyway.
|
2010-04-13 23:31:47 -06:00
|
|
|
// Don't bother smashing if r->arm_pc is 0,
|
|
|
|
// which is probably a call to a nil func: the
|
|
|
|
// old link register is more useful in the stack trace.
|
|
|
|
if(r->arm_pc != 0)
|
|
|
|
r->arm_lr = r->arm_pc;
|
2012-05-04 04:20:09 -06:00
|
|
|
// In case we are panicking from external C code
|
|
|
|
r->arm_r10 = (uintptr)gp;
|
|
|
|
r->arm_r9 = (uintptr)m;
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
r->arm_pc = (uintptr)runtime·sigpanic;
|
2010-04-08 19:15:30 -06:00
|
|
|
return;
|
|
|
|
}
|
2009-06-10 12:53:07 -06:00
|
|
|
|
2012-02-13 18:16:57 -07:00
|
|
|
if(info->si_code == SI_USER || (t->flags & SigNotify))
|
|
|
|
if(runtime·sigsend(sig))
|
2010-04-05 13:51:09 -06:00
|
|
|
return;
|
2012-02-13 18:16:57 -07:00
|
|
|
if(t->flags & SigKill)
|
|
|
|
runtime·exit(2);
|
|
|
|
if(!(t->flags & SigThrow))
|
|
|
|
return;
|
2009-06-10 12:53:07 -06:00
|
|
|
|
2012-02-13 18:16:57 -07:00
|
|
|
Throw:
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
if(runtime·panicking) // traceback already printed
|
|
|
|
runtime·exit(2);
|
|
|
|
runtime·panicking = 1;
|
2009-06-10 12:53:07 -06:00
|
|
|
|
2010-04-05 13:51:09 -06:00
|
|
|
if(sig < 0 || sig >= NSIG)
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
runtime·printf("Signal %d\n", sig);
|
2010-04-05 13:51:09 -06:00
|
|
|
else
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
runtime·printf("%s\n", runtime·sigtab[sig].name);
|
2010-04-05 13:51:09 -06:00
|
|
|
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
runtime·printf("PC=%x\n", r->arm_pc);
|
|
|
|
runtime·printf("\n");
|
2010-04-05 13:51:09 -06:00
|
|
|
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
if(runtime·gotraceback()){
|
2011-02-23 12:47:42 -07:00
|
|
|
runtime·traceback((void*)r->arm_pc, (void*)r->arm_sp, (void*)r->arm_lr, gp);
|
|
|
|
runtime·tracebackothers(gp);
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
runtime·printf("\n");
|
|
|
|
runtime·dumpregs(r);
|
2010-04-05 13:51:09 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// breakpoint();
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
runtime·exit(2);
|
2010-04-05 13:51:09 -06:00
|
|
|
}
|
2009-06-10 12:53:07 -06:00
|
|
|
|
|
|
|
void
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
runtime·signalstack(byte *p, int32 n)
|
2009-06-10 12:53:07 -06:00
|
|
|
{
|
2010-04-05 13:51:09 -06:00
|
|
|
Sigaltstack st;
|
2009-06-10 12:53:07 -06:00
|
|
|
|
2010-04-05 13:51:09 -06:00
|
|
|
st.ss_sp = p;
|
|
|
|
st.ss_size = n;
|
|
|
|
st.ss_flags = 0;
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
runtime·sigaltstack(&st, nil);
|
2009-06-10 12:53:07 -06:00
|
|
|
}
|
|
|
|
|
os/signal: selective signal handling
Restore package os/signal, with new API:
Notify replaces Incoming, allowing clients
to ask for certain signals only. Also, signals
go to everyone who asks, not just one client.
This could plausibly move into package os now
that there are no magic side effects as a result
of the import.
Update runtime for new API: move common Unix
signal handling code into signal_unix.c.
(It's so easy to do this now that we don't have
to edit Makefiles!)
Tested on darwin,linux 386,amd64.
Fixes #1266.
R=r, dsymonds, bradfitz, iant, borman
CC=golang-dev
https://golang.org/cl/3749041
2012-02-13 11:52:37 -07:00
|
|
|
void
|
|
|
|
runtime·setsig(int32 i, void (*fn)(int32, Siginfo*, void*, G*), bool restart)
|
2011-03-23 09:43:37 -06:00
|
|
|
{
|
|
|
|
Sigaction sa;
|
|
|
|
|
|
|
|
runtime·memclr((byte*)&sa, sizeof sa);
|
|
|
|
sa.sa_flags = SA_ONSTACK | SA_SIGINFO | SA_RESTORER;
|
|
|
|
if(restart)
|
|
|
|
sa.sa_flags |= SA_RESTART;
|
|
|
|
sa.sa_mask = ~0ULL;
|
|
|
|
sa.sa_restorer = (void*)runtime·sigreturn;
|
2011-03-27 21:39:42 -06:00
|
|
|
if(fn == runtime·sighandler)
|
|
|
|
fn = (void*)runtime·sigtramp;
|
2011-03-25 10:30:49 -06:00
|
|
|
sa.sa_handler = fn;
|
2012-06-19 11:17:03 -06:00
|
|
|
if(runtime·rt_sigaction(i, &sa, nil, sizeof(sa.sa_mask)) != 0)
|
|
|
|
runtime·throw("rt_sigaction failure");
|
2011-03-23 09:43:37 -06:00
|
|
|
}
|
2012-05-04 11:59:14 -06:00
|
|
|
|
|
|
|
#define AT_NULL 0
|
|
|
|
#define AT_PLATFORM 15 // introduced in at least 2.6.11
|
|
|
|
#define AT_HWCAP 16 // introduced in at least 2.6.11
|
|
|
|
#define AT_RANDOM 25 // introduced in 2.6.29
|
|
|
|
static uint32 runtime·randomNumber;
|
|
|
|
uint32 runtime·hwcap;
|
|
|
|
uint8 runtime·armArch = 6; // we default to ARMv6
|
|
|
|
|
|
|
|
#pragma textflag 7
|
|
|
|
void
|
|
|
|
runtime·setup_auxv(int32 argc, void *argv_list)
|
|
|
|
{
|
|
|
|
byte **argv = &argv_list;
|
|
|
|
byte **envp;
|
|
|
|
uint32 *auxv;
|
|
|
|
uint32 t;
|
|
|
|
|
|
|
|
// skip envp to get to ELF auxiliary vector.
|
|
|
|
for(envp = &argv[argc+1]; *envp != nil; envp++)
|
|
|
|
;
|
|
|
|
envp++;
|
|
|
|
|
|
|
|
for(auxv=(uint32*)envp; auxv[0] != AT_NULL; auxv += 2) {
|
|
|
|
switch(auxv[0]) {
|
|
|
|
case AT_RANDOM: // kernel provided 16-byte worth of random data
|
|
|
|
if(auxv[1])
|
|
|
|
runtime·randomNumber = *(uint32*)(auxv[1] + 4);
|
|
|
|
break;
|
|
|
|
case AT_PLATFORM: // v5l, v6l, v7l
|
|
|
|
if(auxv[1]) {
|
|
|
|
t = *(uint8*)(auxv[1]+1);
|
|
|
|
if(t >= '5' && t <= '7')
|
|
|
|
runtime·armArch = t - '0';
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case AT_HWCAP: // CPU capability bit flags
|
|
|
|
runtime·hwcap = auxv[1];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#pragma textflag 7
|
|
|
|
int64
|
|
|
|
runtime·cputicks() {
|
|
|
|
// copied from runtime.c:/^fastrand1
|
|
|
|
uint32 x;
|
|
|
|
|
|
|
|
x = runtime·randomNumber;
|
|
|
|
x += x;
|
|
|
|
if(x & 0x80000000L)
|
|
|
|
x ^= 0x88888eefUL;
|
|
|
|
runtime·randomNumber = x;
|
|
|
|
|
|
|
|
return ((int64)x) << 32 | x;
|
|
|
|
}
|