aboutsummaryrefslogtreecommitdiff
path: root/libgo/syscalls
AgeCommit message (Collapse)AuthorFilesLines
2011-10-23Implement new syscall package.Ian Lance Taylor42-2986/+0
Calls to library functions now use entersyscall and exitsyscall as appropriate. This is a first step toward multiplexing goroutines onto threads. From-SVN: r180345
2011-09-20Implement goto restrictions.Ian Lance Taylor1-9/+12
From-SVN: r179018
2011-09-16Update Go library to r60.Ian Lance Taylor8-14/+440
From-SVN: r178910
2011-05-31libgo: Define PtraceRegs for Alpha GNU/Linux.Ian Lance Taylor1-0/+32
From Uros Bizjak. From-SVN: r174502
2011-05-24libgo: Irix portability fixes (no declaration for getaddrinfo).Ian Lance Taylor1-0/+41
From Rainer Orth. From-SVN: r174145
2011-05-20Update to current version of Go library.Ian Lance Taylor2-0/+22
From-SVN: r173931
2011-04-25libgo: Irix 6 patches.Ian Lance Taylor1-0/+84
From Rainer Orth. From-SVN: r172935
2011-04-07libgo: Update to current Go library.Ian Lance Taylor4-1/+100
From-SVN: r172106
2011-04-01libgo: Support for alpha.Ian Lance Taylor1-0/+15
From Uros Bizjak. From-SVN: r171860
2011-04-01libgo: Try to guess the right type for select bits in mksysinfo.Ian Lance Taylor1-2/+2
From-SVN: r171858
2011-03-31re PR go/47515 (Issues porting libgo to IRIX 6.5)Ian Lance Taylor1-0/+17
PR go/47515 libgo: Add Irix support. From Rainer Orth. From-SVN: r171806
2011-03-31libgo/syscalls: Use _C_long as the type of the select bits array.Ian Lance Taylor1-5/+7
From-SVN: r171799
2011-03-30libgo: Use waitpid on systems which do not have wait4.Ian Lance Taylor3-14/+44
From-SVN: r171758
2011-03-30libgo: Support systems which do not have strerror_r.Ian Lance Taylor1-0/+32
From-SVN: r171757
2011-03-30Update to current Go library.Ian Lance Taylor2-3/+8
From-SVN: r171732
2011-03-24Update to current version of Go library.Ian Lance Taylor1-21/+46
From-SVN: r171427
2011-03-16Update to current version of Go library (revision 94d654be2064).Ian Lance Taylor2-79/+88
From-SVN: r171076
2011-03-07Use _nuname on 32-bit Solaris 2/x86.Ian Lance Taylor3-2/+10
From-SVN: r170761
2011-02-21Support libgo on Solaris.Ian Lance Taylor3-3/+24
From Rainer Orth. From-SVN: r170355
2011-01-27Fix typo in socket_bsd.go.Ian Lance Taylor1-1/+1
From-SVN: r169313
2011-01-25libgo: Fix typo in syscalls/socket_bsd.go.Ian Lance Taylor1-2/+2
From-SVN: r169190
2011-01-24Recognize m68k, mips, PPC. Don't require arch syscall files to exist.Ian Lance Taylor3-21/+0
From-SVN: r169185
2011-01-24syscalls/sleep_rtems.go: Add missing package clause.Ian Lance Taylor1-0/+2
From-SVN: r169183
2011-01-22syscalls: Add SPARC RTEMS specific file.Ian Lance Taylor1-0/+7
From-SVN: r169119
2011-01-21Remove the types float and complex.Ian Lance Taylor2-0/+105
Update to current version of Go library. Update testsuite for removed types. * go-lang.c (go_langhook_init): Omit float_type_size when calling go_create_gogo. * go-c.h: Update declaration of go_create_gogo. From-SVN: r169098
2011-01-14libgo/syscalls: Finish Solaris code.Ian Lance Taylor3-3/+27
Mostly from Rainer Orth. From-SVN: r168814
2011-01-13Use GOARCH value of sparc64 rather than sparcv9.Ian Lance Taylor1-0/+0
From-SVN: r168740
2011-01-13Clean up syscalls, add some Solaris support.Ian Lance Taylor16-284/+286
From-SVN: r168738
2011-01-12Preliminary framework for Solaris support.Ian Lance Taylor5-0/+63
Partly from Rainer Orth. From-SVN: r168697
2011-01-12Simplify libgo Makefile conditionals.Ian Lance Taylor5-4/+21
From-SVN: r168696
2010-12-03Add Go frontend, libgo library, and Go testsuite.Ian Lance Taylor23-0/+1916
gcc/: * gcc.c (default_compilers): Add entry for ".go". * common.opt: Add -static-libgo as a driver option. * doc/install.texi (Configuration): Mention libgo as an option for --enable-shared. Mention go as an option for --enable-languages. * doc/invoke.texi (Overall Options): Mention .go as a file name suffix. Mention go as a -x option. * doc/frontends.texi (G++ and GCC): Mention Go as a supported language. * doc/sourcebuild.texi (Top Level): Mention libgo. * doc/standards.texi (Standards): Add section on Go language. Move references for other languages into their own section. * doc/contrib.texi (Contributors): Mention that I contributed the Go frontend. gcc/testsuite/: * lib/go.exp: New file. * lib/go-dg.exp: New file. * lib/go-torture.exp: New file. * lib/target-supports.exp (check_compile): Match // Go. From-SVN: r167407