Side by Side Diff: .hgignore
Issue 3822041 :
code review 3822041: runtime: implementation of callback functions for Windo...
Patch Set: code review 3822041: runtime: implementation of callback functions for Windo...
Use n/p to move between diff chunks;
N/P to move between comments.
Please Sign in to add in-line comments.
Jump to:
.hgignore
src/pkg/exp/wingui/Makefile
src/pkg/exp/wingui/gui.go
src/pkg/exp/wingui/winapi.go
src/pkg/exp/wingui/zwinapi.go
src/pkg/runtime/darwin/thread.c
src/pkg/runtime/freebsd/thread.c
src/pkg/runtime/linux/thread.c
src/pkg/runtime/mgc0.c
src/pkg/runtime/plan9/thread.c
src/pkg/runtime/proc.c
src/pkg/runtime/runtime.h
src/pkg/runtime/tiny/thread.c
src/pkg/runtime/windows/386/sys.s
src/pkg/runtime/windows/os.h
src/pkg/runtime/windows/syscall.goc
src/pkg/runtime/windows/thread.c
src/pkg/syscall/syscall_windows.go
OLD NEW
1 syntax:glob 1 syntax:glob
2 .DS_Store 2 .DS_Store
3 .git 3 .git
4 .gitignore 4 .gitignore
5 *.[568ao] 5 *.[568ao]
6 *.ao 6 *.ao
7 *.so 7 *.so
8 *.pyc 8 *.pyc
9 ._* 9 ._*
10 .nfs.* 10 .nfs.*
11 [568a].out 11 [568a].out
12 *.exe
12 *~ 13 *~
13 *.orig 14 *.orig
14 core 15 core
15 _obj 16 _obj
16 _test 17 _test
17 _testmain.go 18 _testmain.go
18 y.tab.[ch] 19 y.tab.[ch]
19 doc/htmlgen 20 doc/htmlgen
20 src/Make.inc 21 src/Make.inc
21 src/cmd/6a/6a 22 src/cmd/6a/6a
(...skipping 19 matching lines...) Expand all Loading...
41 test/run.out 42 test/run.out
42 test/times.out 43 test/times.out
43 test/garbage/*.out 44 test/garbage/*.out
44 goinstall.log 45 goinstall.log
45 46
46 syntax:regexp 47 syntax:regexp
47 ^bin/ 48 ^bin/
48 ^pkg/ 49 ^pkg/
49 ^src/cmd/(.*)/6?\1$ 50 ^src/cmd/(.*)/6?\1$
50 ^.*/core.[0-9]*$ 51 ^.*/core.[0-9]*$
OLD NEW