aboutsummaryrefslogtreecommitdiff
path: root/pkg/linux_amd64/runtime/debug.a
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/linux_amd64/runtime/debug.a')
-rw-r--r--pkg/linux_amd64/runtime/debug.a165
1 files changed, 165 insertions, 0 deletions
diff --git a/pkg/linux_amd64/runtime/debug.a b/pkg/linux_amd64/runtime/debug.a
new file mode 100644
index 000000000..6551ca230
--- /dev/null
+++ b/pkg/linux_amd64/runtime/debug.a
@@ -0,0 +1,165 @@
+!<arch>
+__.PKGDEF 0 0 0 644 8350 `
+go object linux amd64 go1.4.1 X:precisestack
+
+$$
+package debug
+ import ioutil "io/ioutil"
+ import runtime "runtime"
+ import time "time"
+ import os "os"
+ import fmt "fmt"
+ import sort "sort"
+ import bytes "bytes"
+ type @"time".zone struct { @"time".name string; @"time".offset int; @"time".isDST bool }
+ type @"time".zoneTrans struct { @"time".when int64; @"time".index uint8; @"time".isstd bool; @"time".isutc bool }
+ type @"time".Location struct { @"time".name string; @"time".zone []@"time".zone; @"time".tx []@"time".zoneTrans; @"time".cacheStart int64; @"time".cacheEnd int64; @"time".cacheZone *@"time".zone }
+ func (@"time".l·2 *@"time".Location "esc:0x0") String () (? string)
+ func (@"time".l·2 *@"time".Location "esc:0x0") @"time".firstZoneUsed () (? bool)
+ func (@"time".l·2 *@"time".Location "esc:0x2") @"time".get () (? *@"time".Location)
+ func (@"time".l·6 *@"time".Location "esc:0x1") @"time".lookup (@"time".sec·7 int64) (@"time".name·1 string, @"time".offset·2 int, @"time".isDST·3 bool, @"time".start·4 int64, @"time".end·5 int64)
+ func (@"time".l·2 *@"time".Location "esc:0x0") @"time".lookupFirstZone () (? int)
+ func (@"time".l·4 *@"time".Location "esc:0x0") @"time".lookupName (@"time".name·5 string "esc:0x0", @"time".unix·6 int64) (@"time".offset·1 int, @"time".isDST·2 bool, @"time".ok·3 bool)
+ type @"time".Duration int64
+ func (@"time".d·2 @"time".Duration) Hours () (? float64) { var @"time".hour·3 @"time".Duration; ; @"time".hour·3 = @"time".d·2 / @"time".Duration(0x34630B8A000); var @"time".nsec·4 @"time".Duration; ; @"time".nsec·4 = @"time".d·2 % @"time".Duration(0x34630B8A000); return float64(@"time".hour·3) + float64(@"time".nsec·4) * 0x9C5FFF26ED75Fp-93 }
+ func (@"time".d·2 @"time".Duration) Minutes () (? float64) { var @"time".min·3 @"time".Duration; ; @"time".min·3 = @"time".d·2 / @"time".Duration(0xDF8475800); var @"time".nsec·4 @"time".Duration; ; @"time".nsec·4 = @"time".d·2 % @"time".Duration(0xDF8475800); return float64(@"time".min·3) + float64(@"time".nsec·4) * 0x9299FF347E9E9p-87 }
+ func (@"time".d·2 @"time".Duration) Nanoseconds () (? int64) { return int64(@"time".d·2) }
+ func (@"time".d·2 @"time".Duration) Seconds () (? float64) { var @"time".sec·3 @"time".Duration; ; @"time".sec·3 = @"time".d·2 / @"time".Duration(0x3B9ACA00); var @"time".nsec·4 @"time".Duration; ; @"time".nsec·4 = @"time".d·2 % @"time".Duration(0x3B9ACA00); return float64(@"time".sec·3) + float64(@"time".nsec·4) * 0x112E0BE826D695p-82 }
+ func (@"time".d·2 @"time".Duration) String () (? string)
+ type @"time".Month int
+ func (@"time".m·2 @"time".Month) String () (? string) { return @"time".months[@"time".m·2 - @"time".Month(0x1)] }
+ type @"time".Weekday int
+ func (@"time".d·2 @"time".Weekday) String () (? string) { return @"time".days[@"time".d·2] }
+ type @"time".Time struct { @"time".sec int64; @"time".nsec int32; @"time".loc *@"time".Location }
+ func (@"time".t·2 @"time".Time "esc:0x2") Add (@"time".d·3 @"time".Duration) (? @"time".Time)
+ func (@"time".t·2 @"time".Time "esc:0x2") AddDate (@"time".years·3 int, @"time".months·4 int, @"time".days·5 int) (? @"time".Time)
+ func (@"time".t·2 @"time".Time "esc:0x0") After (@"time".u·3 @"time".Time "esc:0x0") (? bool) { return @"time".t·2.@"time".sec > @"time".u·3.@"time".sec || @"time".t·2.@"time".sec == @"time".u·3.@"time".sec && @"time".t·2.@"time".nsec > @"time".u·3.@"time".nsec }
+ func (@"time".t·2 @"time".Time "esc:0x0") Before (@"time".u·3 @"time".Time "esc:0x0") (? bool) { return @"time".t·2.@"time".sec < @"time".u·3.@"time".sec || @"time".t·2.@"time".sec == @"time".u·3.@"time".sec && @"time".t·2.@"time".nsec < @"time".u·3.@"time".nsec }
+ func (@"time".t·4 @"time".Time "esc:0x0") Clock () (@"time".hour·1 int, @"time".min·2 int, @"time".sec·3 int)
+ func (@"time".t·4 @"time".Time "esc:0x0") Date () (@"time".year·1 int, @"time".month·2 @"time".Month, @"time".day·3 int)
+ func (@"time".t·2 @"time".Time "esc:0x0") Day () (? int)
+ func (@"time".t·2 @"time".Time "esc:0x0") Equal (@"time".u·3 @"time".Time "esc:0x0") (? bool) { return @"time".t·2.@"time".sec == @"time".u·3.@"time".sec && @"time".t·2.@"time".nsec == @"time".u·3.@"time".nsec }
+ func (@"time".t·2 @"time".Time "esc:0x0") Format (@"time".layout·3 string "esc:0x0") (? string)
+ func (@"time".t·2 *@"time".Time "esc:0x0") GobDecode (@"time".data·3 []byte "esc:0x0") (? error)
+ func (@"time".t·3 @"time".Time "esc:0x0") GobEncode () (? []byte, ? error)
+ func (@"time".t·2 @"time".Time "esc:0x0") Hour () (? int)
+ func (@"time".t·3 @"time".Time "esc:0x0") ISOWeek () (@"time".year·1 int, @"time".week·2 int)
+ func (@"time".t·2 @"time".Time "esc:0x2") In (@"time".loc·3 *@"time".Location "esc:0x2") (? @"time".Time)
+ func (@"time".t·2 @"time".Time "esc:0x0") IsZero () (? bool) { return @"time".t·2.@"time".sec == 0x0 && @"time".t·2.@"time".nsec == 0x0 }
+ func (@"time".t·2 @"time".Time "esc:0x2") Local () (? @"time".Time) { @"time".t·2.@"time".loc = @"time".Local; return @"time".t·2 }
+ func (@"time".t·2 @"time".Time "esc:0x2") Location () (? *@"time".Location) { var @"time".l·3 *@"time".Location; ; @"time".l·3 = @"time".t·2.@"time".loc; if @"time".l·3 == nil { @"time".l·3 = @"time".UTC }; return @"time".l·3 }
+ func (@"time".t·3 @"time".Time "esc:0x0") MarshalBinary () (? []byte, ? error)
+ func (@"time".t·3 @"time".Time "esc:0x0") MarshalJSON () (? []byte, ? error)
+ func (@"time".t·3 @"time".Time "esc:0x0") MarshalText () (? []byte, ? error)
+ func (@"time".t·2 @"time".Time "esc:0x0") Minute () (? int)
+ func (@"time".t·2 @"time".Time "esc:0x0") Month () (? @"time".Month)
+ func (@"time".t·2 @"time".Time "esc:0x0") Nanosecond () (? int) { return int(@"time".t·2.@"time".nsec) }
+ func (@"time".t·2 @"time".Time "esc:0x2") Round (@"time".d·3 @"time".Duration) (? @"time".Time)
+ func (@"time".t·2 @"time".Time "esc:0x0") Second () (? int)
+ func (@"time".t·2 @"time".Time "esc:0x0") String () (? string)
+ func (@"time".t·2 @"time".Time "esc:0x0") Sub (@"time".u·3 @"time".Time "esc:0x0") (? @"time".Duration)
+ func (@"time".t·2 @"time".Time "esc:0x2") Truncate (@"time".d·3 @"time".Duration) (? @"time".Time)
+ func (@"time".t·2 @"time".Time "esc:0x2") UTC () (? @"time".Time) { @"time".t·2.@"time".loc = @"time".UTC; return @"time".t·2 }
+ func (@"time".t·2 @"time".Time "esc:0x0") Unix () (? int64) { return @"time".t·2.@"time".sec + -0xE7791F700 }
+ func (@"time".t·2 @"time".Time "esc:0x0") UnixNano () (? int64) { return (@"time".t·2.@"time".sec + -0xE7791F700) * 0x3B9ACA00 + int64(@"time".t·2.@"time".nsec) }
+ func (@"time".t·2 *@"time".Time "esc:0x0") UnmarshalBinary (@"time".data·3 []byte "esc:0x0") (? error)
+ func (@"time".t·2 *@"time".Time "esc:0x0") UnmarshalJSON (@"time".data·3 []byte "esc:0x0") (@"time".err·1 error)
+ func (@"time".t·2 *@"time".Time "esc:0x0") UnmarshalText (@"time".data·3 []byte "esc:0x0") (@"time".err·1 error)
+ func (@"time".t·2 @"time".Time "esc:0x0") Weekday () (? @"time".Weekday)
+ func (@"time".t·2 @"time".Time "esc:0x0") Year () (? int)
+ func (@"time".t·2 @"time".Time "esc:0x0") YearDay () (? int)
+ func (@"time".t·3 @"time".Time "esc:0x0") Zone () (@"time".name·1 string, @"time".offset·2 int)
+ func (@"time".t·2 @"time".Time "esc:0x0") @"time".abs () (? uint64)
+ func (@"time".t·5 @"time".Time "esc:0x0") @"time".date (@"time".full·6 bool) (@"time".year·1 int, @"time".month·2 @"time".Month, @"time".day·3 int, @"time".yday·4 int)
+ func (@"time".t·4 @"time".Time "esc:0x1") @"time".locabs () (@"time".name·1 string, @"time".offset·2 int, @"time".abs·3 uint64)
+ type @"".GCStats struct { LastGC @"time".Time; NumGC int64; PauseTotal @"time".Duration; Pause []@"time".Duration; PauseEnd []@"time".Time; PauseQuantiles []@"time".Duration }
+ func @"".ReadGCStats (@"".stats·1 *@"".GCStats)
+ func @"".SetGCPercent (@"".percent·2 int) (? int)
+ func @"".FreeOSMemory ()
+ func @"".SetMaxStack (@"".bytes·2 int) (? int)
+ func @"".SetMaxThreads (@"".threads·2 int) (? int)
+ func @"".SetPanicOnFault (@"".enabled·2 bool) (? bool)
+ func @"".WriteHeapDump (@"".fd·1 uintptr)
+ func @"".PrintStack ()
+ func @"".Stack () (? []byte)
+ func @"".init ()
+ var @"time".months [12]string
+ var @"time".days [7]string
+ var @"time".Local *@"time".Location
+ var @"time".UTC *@"time".Location
+
+$$
+_go_.6 0 0 0 644 47741 `
+go object linux amd64 go1.4.1 X:precisestack
+
+!
+
+fmt.aio/ioutil.aos.a
+
+
+
+ " 
+?zG0  
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+H5+
+
+
+
+"".pc
+
+
+
+
+"".pc
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+go object linux amd64 go1.4.1
+!
+
+go object linux amd64 go1.4.1
+!
+
+
+
+
+