-
Notifications
You must be signed in to change notification settings - Fork 0
/
mdebug.txt
6449 lines (4904 loc) · 165 KB
/
mdebug.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
SymbolicHeader(magic=28681, vstamp=1802, ilineMax=59372, cbLine=17427, cbLineOffset=311392, idnMax=0, cbDnOffset=0, ipdMax=721, cbPdOffset=328820, isymMax=4957, cbSymOffset=366312, ioptMax=0, cbOptOffset=0, iauxMax=9034, cbAuxOffset=425796, issMax=41625, cbSsOffset=461932, issExtMax=10053, cbSsExtOffset=503557, ifdMax=146, cbFdOffset=513612, crfd=2600, cbRfdOffset=524124, iextMax=773, cbExtOffset=534524)
FileDescriptor(adr=4232928, rss=1, issBase=0, cbSs=83, isymBase=0, csym=12, ilineBase=0, cline=74, ioptBase=0, copt=0, ipdFirst=0, cpd=2, iauxBase=0, caux=8, rfdBase=0, crfd=9, XXX_bitfield=427819008, cbLineOffset=0, cbLine=64)
name:crt1text.s
pretty print:
// begin file crt1text.s
static LOCALSZ;
static FRAMESZ;
static RAOFF;
static GPOFF;
nil __start();
//Label: 10$0000000000 @ 4232940;
//Label: 1$0000000000 @ 4233024;
nil _mcount();
// end file crt1text.s
FileDescriptor(adr=4232928, rss=1, issBase=83, cbSs=46, isymBase=12, csym=2, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=2, cpd=0, iauxBase=8, caux=0, rfdBase=9, crfd=9, XXX_bitfield=494927872, cbLineOffset=64, cbLine=0)
name:/xlv3/bonsai-oct28/root/usr/include/regdef.h
pretty print:
// begin file /xlv3/bonsai-oct28/root/usr/include/regdef.h
// end file /xlv3/bonsai-oct28/root/usr/include/regdef.h
FileDescriptor(adr=4232928, rss=1, issBase=129, cbSs=47, isymBase=14, csym=2, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=2, cpd=0, iauxBase=8, caux=0, rfdBase=18, crfd=9, XXX_bitfield=494927872, cbLineOffset=64, cbLine=0)
name:/xlv3/bonsai-oct28/root/usr/include/sgidefs.h
pretty print:
// begin file /xlv3/bonsai-oct28/root/usr/include/sgidefs.h
// end file /xlv3/bonsai-oct28/root/usr/include/sgidefs.h
FileDescriptor(adr=4232928, rss=1, issBase=176, cbSs=52, isymBase=16, csym=2, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=2, cpd=0, iauxBase=8, caux=0, rfdBase=27, crfd=9, XXX_bitfield=494927872, cbLineOffset=64, cbLine=0)
name:/xlv3/bonsai-oct28/root/usr/include/sys/fpregdef.h
pretty print:
// begin file /xlv3/bonsai-oct28/root/usr/include/sys/fpregdef.h
// end file /xlv3/bonsai-oct28/root/usr/include/sys/fpregdef.h
FileDescriptor(adr=4232928, rss=1, issBase=228, cbSs=43, isymBase=18, csym=2, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=2, cpd=0, iauxBase=8, caux=0, rfdBase=36, crfd=9, XXX_bitfield=494927872, cbLineOffset=64, cbLine=0)
name:/xlv3/bonsai-oct28/root/usr/include/asm.h
pretty print:
// begin file /xlv3/bonsai-oct28/root/usr/include/asm.h
// end file /xlv3/bonsai-oct28/root/usr/include/asm.h
FileDescriptor(adr=4232928, rss=1, issBase=271, cbSs=22, isymBase=20, csym=4, ilineBase=74, cline=1, ioptBase=0, copt=0, ipdFirst=2, cpd=1, iauxBase=8, caux=4, rfdBase=45, crfd=9, XXX_bitfield=427819008, cbLineOffset=64, cbLine=1)
name:crt1tinit.s
pretty print:
// begin file crt1tinit.s
nil __istart();
// end file crt1tinit.s
FileDescriptor(adr=4233248, rss=1, issBase=293, cbSs=1252, isymBase=24, csym=141, ilineBase=75, cline=2489, ioptBase=0, copt=0, ipdFirst=3, cpd=15, iauxBase=12, caux=226, rfdBase=54, crfd=33, XXX_bitfield=16777216, cbLineOffset=65, cbLine=506)
name:makerom.c
pretty print:
// begin file makerom.c
static const sigaction_t act;
static unsigned char segmentSymbolSource[255];
static unsigned char segmentSymbolObject[255];
static unsigned char entrySource[255];
static unsigned char entryObject[255];
static unsigned char objectListFile[255];
static unsigned char* romFile;
static int checkOverlap;
static unsigned char* progName;
int main(int argc, unsigned char** argv);
//{
// int c;
// FILE* f;
// Wave* wave;
// unsigned char* cppCmd;
// long cppCmdCount;
// int headerFd;
// int pif2bootFd;
// unsigned char* bootFileName;
// unsigned char* headerFileName;
// unsigned char* pif2bootFileName;
// unsigned char* fontFileName;
// int createRom;
// unsigned char CheckerBuf[255];
// unsigned char NameBuf[255];
// unsigned char* rootName;
// int quietMode;
// {
// unsigned char gcordFileBuf[255];
// }
//}
void usage();
//{
//}
void getOsVersion();
//{
// unsigned char* cmd;
// unsigned char buf[4096];
// FILE* procPtr;
//}
int checkIdoVersion(unsigned char* rootName);
//{
// int u64CheckFound;
// int v70Found;
// unsigned char cmd[255];
// unsigned char buffer[255];
// stat statBuffer;
// FILE* procPtr;
//}
void printVersion();
//{
//}
void getBootFile(unsigned char* bootFileName);
//{
// int bootFd;
// unsigned char scratchFileName[255];
// stat buf;
// unsigned char errMessage[255];
//}
void getPif2BootFile(unsigned char* pif2bootFileName);
//{
// int pif2bootFd;
// unsigned char scratchFileName[255];
// stat buf;
// unsigned char errMessage[255];
//}
void getRomheaderFile(unsigned char* headerFileName);
//{
// int headerFd;
// unsigned char scratchFileName[255];
// stat buf;
// unsigned char errMessage[255];
// unsigned char nibbleString[2];
// int nibbleVal;
// int i;
// int readPtr;
// int retval;
//}
void getFontDataFile(unsigned char* fontFileName);
//{
// int fontFd;
// unsigned char scratchFileName[255];
// stat buf;
// unsigned char errMessage[255];
//}
unsigned char* gloadFindFile(unsigned char* fullpath, unsigned char* postRootSuffix, unsigned char* fname);
//{
// unsigned char* rootname;
// unsigned char* rootpath;
// int fd;
// int try;
//}
void doWave(Wave* wave);
//{
//}
void nameTempFiles();
//{
// Wave* wave;
// unsigned char* tmpdir;
//}
void unlinkTempFiles();
//{
// Wave* wave;
//}
void cleanup(int sig);
//{
//}
int execCommand(unsigned char* s);
//{
// int status;
//}
// end file makerom.c
FileDescriptor(adr=4233248, rss=1, issBase=1545, cbSs=170, isymBase=165, csym=10, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=18, cpd=0, iauxBase=238, caux=27, rfdBase=87, crfd=33, XXX_bitfield=83886080, cbLineOffset=571, cbLine=0)
name:/usr/include/sgidefs.h
pretty print:
// begin file /usr/include/sgidefs.h
typedef int __int32_t;
typedef unsigned int __uint32_t;
typedef long long __int64_t;
typedef unsigned long long __uint64_t;
typedef __int32_t __psint_t;
typedef __uint32_t __psunsigned_t;
typedef __int32_t __scint_t;
typedef __uint32_t __scunsigned_t;
// end file /usr/include/sgidefs.h
FileDescriptor(adr=4233248, rss=1, issBase=1715, cbSs=772, isymBase=175, csym=91, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=18, cpd=0, iauxBase=265, caux=110, rfdBase=120, crfd=33, XXX_bitfield=83886080, cbLineOffset=571, cbLine=0)
name:/usr/include/sys/types.h
pretty print:
// begin file /usr/include/sys/types.h
typedef unsigned char uchar_t;
typedef unsigned short ushort_t;
typedef unsigned int uint_t;
typedef unsigned long ulong_t;
typedef unsigned char* addr_t;
typedef unsigned char* caddr_t;
typedef long daddr_t;
typedef long pgno_t;
typedef __uint32_t pfn_t;
typedef short cnt_t;
typedef __int32_t pgcnt_t;
typedef enum {
B_FALSE = 0,
B_TRUE = 1,
} boolean_t;
typedef long id_t;
typedef ulong_t major_t;
typedef ulong_t minor_t;
typedef ushort_t o_mode_t;
typedef short o_dev_t;
typedef ushort_t o_uid_t;
typedef o_uid_t o_gid_t;
typedef short o_nlink_t;
typedef short o_pid_t;
typedef __uint32_t o_ino_t;
typedef unsigned long mode_t;
typedef unsigned long dev_t;
typedef long uid_t;
typedef long gid_t;
typedef unsigned long nlink_t;
typedef long pid_t;
typedef unsigned long ino_t;
typedef __uint64_t ino64_t;
typedef long off_t;
typedef __int64_t off64_t;
typedef __scint_t __scoff_t;
typedef __scoff_t scoff_t;
typedef long blkcnt_t;
typedef ulong_t fsblkcnt_t;
typedef ulong_t fsfilcnt_t;
typedef long swblk_t;
typedef unsigned long paddr_t;
typedef int key_t;
typedef unsigned char use_t;
typedef short sysid_t;
typedef short index_t;
typedef unsigned int lock_t;
typedef signed char cpuid_t;
typedef unsigned char pri_t;
typedef __uint64_t accum_t;
typedef __int64_t prid_t;
typedef __int64_t ash_t;
typedef unsigned int size_t;
typedef int ssize_t;
typedef long time_t;
typedef long clock_t;
typedef long wchar_t;
typedef int clockid_t;
typedef int timer_t;
typedef unsigned int useconds_t;
typedef __scunsigned_t bitnum_t;
typedef __scunsigned_t bitlen_t;
typedef int processorid_t;
typedef int toid_t;
typedef long* qaddr_t;
typedef __uint32_t inst_t;
typedef unsigned int machreg_t;
typedef __uint32_t fpreg_t;
typedef signed char int8_t;
typedef unsigned char uint8_t;
typedef short int16_t;
typedef unsigned short uint16_t;
typedef int int32_t;
typedef unsigned int uint32_t;
typedef __int64_t int64_t;
typedef __uint64_t uint64_t;
typedef __int64_t intmax_t;
typedef __uint64_t uintmax_t;
typedef long intptr_t;
typedef unsigned long uintptr_t;
typedef unsigned char u_int8_t;
typedef unsigned short u_int16_t;
typedef __uint32_t u_int32_t;
typedef long hostid_t;
typedef struct {
/* 0x0 */ __uint32_t sigbits[2];
} k_sigset_t;
// end file /usr/include/sys/types.h
FileDescriptor(adr=4233248, rss=1, issBase=2487, cbSs=168, isymBase=266, csym=18, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=18, cpd=0, iauxBase=375, caux=33, rfdBase=153, crfd=33, XXX_bitfield=83886080, cbLineOffset=571, cbLine=0)
name:/usr/include/sys/bsd_types.h
pretty print:
// begin file /usr/include/sys/bsd_types.h
typedef struct {
/* 0x0 */ int r[1];
}* physadr;
typedef unsigned char unchar;
typedef unsigned char u_char;
typedef unsigned short ushort;
typedef unsigned short u_short;
typedef unsigned int uint;
typedef unsigned int u_int;
typedef unsigned long ulong;
typedef unsigned long u_long;
typedef struct _quad {
/* 0x0 */ long val[2];
} quad;
// end file /usr/include/sys/bsd_types.h
FileDescriptor(adr=4233248, rss=1, issBase=2655, cbSs=136, isymBase=284, csym=9, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=18, cpd=0, iauxBase=408, caux=26, rfdBase=186, crfd=33, XXX_bitfield=83886080, cbLineOffset=571, cbLine=0)
name:/usr/include/sys/select.h
pretty print:
// begin file /usr/include/sys/select.h
typedef long fd_mask_t;
typedef unsigned long ufd_mask_t;
typedef struct fd_set {
/* 0x0 */ fd_mask_t fds_bits[32];
} fd_set;
typedef long fd_mask;
// end file /usr/include/sys/select.h
FileDescriptor(adr=4233248, rss=1, issBase=2791, cbSs=76, isymBase=293, csym=2, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=18, cpd=0, iauxBase=434, caux=15, rfdBase=219, crfd=33, XXX_bitfield=83886080, cbLineOffset=571, cbLine=0)
name:/usr/include/string.h
pretty print:
// begin file /usr/include/string.h
// end file /usr/include/string.h
FileDescriptor(adr=4233248, rss=1, issBase=2867, cbSs=275, isymBase=295, csym=29, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=18, cpd=0, iauxBase=449, caux=45, rfdBase=252, crfd=33, XXX_bitfield=83886080, cbLineOffset=571, cbLine=0)
name:/usr/include/sys/time.h
pretty print:
// begin file /usr/include/sys/time.h
typedef long long stamp_t;
typedef struct USTMSCpair {
/* 0x0 */ stamp_t ust;
/* 0x8 */ stamp_t msc;
} USTMSCpair;
struct timeval {
/* 0x0 */ time_t tv_sec;
/* 0x4 */ long tv_usec;
};
struct __irix5_timeval {
/* 0x0 */ __int32_t tv_sec;
/* 0x4 */ __int32_t tv_usec;
};
struct itimerval {
/* 0x0 */ timeval it_interval;
/* 0x8 */ timeval it_value;
};
struct timezone {
/* 0x0 */ int tz_minuteswest;
/* 0x4 */ int tz_dsttime;
};
typedef struct timestruc {
/* 0x0 */ time_t tv_sec;
/* 0x4 */ long tv_nsec;
} timestruc_t;
// end file /usr/include/sys/time.h
FileDescriptor(adr=4233248, rss=1, issBase=3142, cbSs=838, isymBase=324, csym=105, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=18, cpd=0, iauxBase=494, caux=204, rfdBase=285, crfd=33, XXX_bitfield=83886080, cbLineOffset=571, cbLine=0)
name:/usr/include/sys/signal.h
pretty print:
// begin file /usr/include/sys/signal.h
typedef void (*SIG_PF)(/* ECOFF does not store param types */);
typedef union sigval {
/* 0x0 */ int sival_int;
/* 0x0 */ void* sival_ptr;
} sigval_t;
typedef union notifyinfo {
/* 0x0 */ int nisigno;
/* 0x0 */ void (*nifunc)(/* ECOFF does not store param types */);
} notifyinfo_t;
typedef struct sigevent {
/* 0x0 */ int sigev_notify;
/* 0x4 */ notifyinfo_t sigev_notifyinfo;
/* 0x8 */ sigval_t sigev_value;
/* 0xC */ unsigned long sigev_reserved[13];
/* 0x40 */ unsigned long sigev_pad[6];
} sigevent_t;
typedef struct siginfo {
/* 0x0 */ int si_signo;
/* 0x4 */ int si_code;
/* 0x8 */ int si_errno;
/* 0xC */ union {
/* 0x0 */ int si_pad[29];
/* 0x0 */ struct {
/* 0x0 */ pid_t __pid;
/* 0x4 */ union {
/* 0x0 */ struct {
/* 0x0 */ uid_t __uid;
} __kill;
/* 0x0 */ struct {
/* 0x0 */ clock_t __utime;
/* 0x4 */ int __status;
/* 0x8 */ clock_t __stime;
} __cld;
} __pdata;
} __proc;
/* 0x0 */ struct {
/* 0x0 */ void* __addr;
} __fault;
/* 0x0 */ struct {
/* 0x0 */ int __fd;
/* 0x4 */ long __band;
} __file;
/* 0x0 */ sigval_t __value;
} __data;
} siginfo_t;
typedef struct {
/* 0x0 */ __uint32_t __sigbits[4];
} sigset_t;
typedef union __sighandler {
/* 0x0 */ void (*__sa_handler)(/* ECOFF does not store param types */);
/* 0x0 */ void (*__sa_sigaction)(/* ECOFF does not store param types */);
} __sighandler_t;
typedef struct sigaction {
/* 0x0 */ int sa_flags;
/* 0x4 */ __sighandler_t sa_sighandler;
/* 0x8 */ sigset_t sa_mask;
/* 0x18 */ int sa_resv[2];
} sigaction_t;
struct sigstack {
/* 0x0 */ unsigned char* ss_sp;
/* 0x4 */ int ss_onstack;
};
typedef struct sigaltstack {
/* 0x0 */ unsigned char* ss_sp;
/* 0x4 */ int ss_size;
/* 0x8 */ int ss_flags;
} stack_t;
typedef struct sigcontext {
/* 0x0 */ __uint32_t sc_regmask;
/* 0x4 */ __uint32_t sc_status;
/* 0x8 */ __uint64_t sc_pc;
/* 0x10 */ __uint64_t sc_regs[32];
/* 0x110 */ __uint64_t sc_fpregs[32];
/* 0x210 */ __uint32_t sc_ownedfp;
/* 0x214 */ __uint32_t sc_fpc_csr;
/* 0x218 */ __uint32_t sc_fpc_eir;
/* 0x21C */ __uint32_t sc_ssflags;
/* 0x220 */ __uint64_t sc_mdhi;
/* 0x228 */ __uint64_t sc_mdlo;
/* 0x230 */ __uint64_t sc_cause;
/* 0x238 */ __uint64_t sc_badvaddr;
/* 0x240 */ __uint64_t sc_triggersave;
/* 0x248 */ sigset_t sc_sigset;
/* 0x258 */ __uint64_t sc_fp_rounded_result;
/* 0x260 */ __uint64_t sc_pancake[5];
/* 0x288 */ __uint64_t sc_pad[26];
} sigcontext_t;
// end file /usr/include/sys/signal.h
FileDescriptor(adr=4233248, rss=1, issBase=3980, cbSs=299, isymBase=429, csym=31, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=18, cpd=0, iauxBase=698, caux=85, rfdBase=318, crfd=33, XXX_bitfield=83886080, cbLineOffset=571, cbLine=0)
name:/usr/include/sys/ucontext.h
pretty print:
// begin file /usr/include/sys/ucontext.h
typedef unsigned int greg_t;
typedef greg_t gregset_t[36];
typedef struct fpregset {
/* 0x0 */ union {
/* 0x0 */ double fp_dregs[16];
/* 0x0 */ float fp_fregs[32];
/* 0x0 */ unsigned int fp_regs[32];
} fp_r;
/* 0x80 */ unsigned int fp_csr;
/* 0x84 */ unsigned int fp_pad;
} fpregset_t;
typedef struct {
/* 0x0 */ gregset_t gregs;
/* 0x90 */ fpregset_t fpregs;
} mcontext_t;
typedef struct ucontext {
/* 0x0 */ unsigned long uc_flags;
/* 0x4 */ ucontext_t* uc_link;
/* 0x8 */ sigset_t uc_sigmask;
/* 0x18 */ stack_t uc_stack;
/* 0x28 */ mcontext_t uc_mcontext;
/* 0x140 */ __int64_t uc_pancake[5];
/* 0x168 */ long uc_filler[37];
/* 0x1FC */ int uc_triggersave;
} ucontext_t;
// end file /usr/include/sys/ucontext.h
FileDescriptor(adr=4233248, rss=1, issBase=4279, cbSs=264, isymBase=460, csym=22, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=18, cpd=0, iauxBase=783, caux=45, rfdBase=351, crfd=33, XXX_bitfield=83886080, cbLineOffset=571, cbLine=0)
name:/usr/include/sys/ptimers.h
pretty print:
// begin file /usr/include/sys/ptimers.h
typedef struct timespec {
/* 0x0 */ time_t tv_sec;
/* 0x4 */ long tv_nsec;
} timespec_t;
typedef struct itimerspec {
/* 0x0 */ timespec_t it_interval;
/* 0x8 */ timespec_t it_value;
} itimerspec_t;
typedef struct ptimer_info {
/* 0x0 */ __int64_t next_timeout;
/* 0x8 */ __int64_t interval_tick;
/* 0x10 */ int signo;
/* 0x14 */ sigval_t value;
/* 0x18 */ int clock_type;
/* 0x1C */ toid_t next_toid;
/* 0x20 */ int overrun_cnt;
} ptimer_info_t;
// end file /usr/include/sys/ptimers.h
FileDescriptor(adr=4233248, rss=1, issBase=4543, cbSs=145, isymBase=482, csym=13, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=18, cpd=0, iauxBase=828, caux=27, rfdBase=384, crfd=33, XXX_bitfield=83886080, cbLineOffset=571, cbLine=0)
name:/usr/include/time.h
pretty print:
// begin file /usr/include/time.h
struct tm {
/* 0x0 */ int tm_sec;
/* 0x4 */ int tm_min;
/* 0x8 */ int tm_hour;
/* 0xC */ int tm_mday;
/* 0x10 */ int tm_mon;
/* 0x14 */ int tm_year;
/* 0x18 */ int tm_wday;
/* 0x1C */ int tm_yday;
/* 0x20 */ int tm_isdst;
};
// end file /usr/include/time.h
FileDescriptor(adr=4233248, rss=1, issBase=4688, cbSs=388, isymBase=495, csym=42, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=18, cpd=0, iauxBase=855, caux=135, rfdBase=417, crfd=33, XXX_bitfield=83886080, cbLineOffset=571, cbLine=0)
name:/usr/include/sys/stat.h
pretty print:
// begin file /usr/include/sys/stat.h
struct stat {
/* 0x0 */ dev_t st_dev;
/* 0x4 */ long st_pad1[3];
/* 0x10 */ ino_t st_ino;
/* 0x14 */ mode_t st_mode;
/* 0x18 */ nlink_t st_nlink;
/* 0x1C */ uid_t st_uid;
/* 0x20 */ gid_t st_gid;
/* 0x24 */ dev_t st_rdev;
/* 0x28 */ long st_pad2[2];
/* 0x30 */ off_t st_size;
/* 0x34 */ long st_pad3;
/* 0x38 */ timestruc_t st_atim;
/* 0x40 */ timestruc_t st_mtim;
/* 0x48 */ timestruc_t st_ctim;
/* 0x50 */ long st_blksize;
/* 0x54 */ blkcnt_t st_blocks;
/* 0x58 */ unsigned char st_fstype[16];
/* 0x68 */ long st_pad4[8];
};
struct stat64 {
/* 0x0 */ dev_t st_dev;
/* 0x4 */ long st_pad1[3];
/* 0x10 */ ino64_t st_ino;
/* 0x18 */ mode_t st_mode;
/* 0x1C */ nlink_t st_nlink;
/* 0x20 */ uid_t st_uid;
/* 0x24 */ gid_t st_gid;
/* 0x28 */ dev_t st_rdev;
/* 0x2C */ long st_pad2[2];
/* 0x38 */ off64_t st_size;
/* 0x40 */ long st_pad3;
/* 0x44 */ timestruc_t st_atim;
/* 0x4C */ timestruc_t st_mtim;
/* 0x54 */ timestruc_t st_ctim;
/* 0x5C */ long st_blksize;
/* 0x60 */ __int64_t st_blocks;
/* 0x68 */ unsigned char st_fstype[16];
/* 0x78 */ long st_pad4[8];
};
// end file /usr/include/sys/stat.h
FileDescriptor(adr=4233248, rss=1, issBase=5076, cbSs=74, isymBase=537, csym=2, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=18, cpd=0, iauxBase=990, caux=21, rfdBase=450, crfd=33, XXX_bitfield=83886080, cbLineOffset=571, cbLine=0)
name:/usr/include/errno.h
pretty print:
// begin file /usr/include/errno.h
// end file /usr/include/errno.h
FileDescriptor(adr=4233248, rss=1, issBase=5150, cbSs=94, isymBase=539, csym=7, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=18, cpd=0, iauxBase=1011, caux=27, rfdBase=483, crfd=33, XXX_bitfield=83886080, cbLineOffset=571, cbLine=0)
name:/usr/include/limits.h
pretty print:
// begin file /usr/include/limits.h
typedef union _h_val {
/* 0x0 */ unsigned long i[2];
/* 0x0 */ double d;
} _h_val;
// end file /usr/include/limits.h
FileDescriptor(adr=4233248, rss=1, issBase=5244, cbSs=76, isymBase=546, csym=2, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=18, cpd=0, iauxBase=1038, caux=16, rfdBase=516, crfd=33, XXX_bitfield=83886080, cbLineOffset=571, cbLine=0)
name:/usr/include/getopt.h
pretty print:
// begin file /usr/include/getopt.h
// end file /usr/include/getopt.h
FileDescriptor(adr=4233248, rss=1, issBase=5320, cbSs=89, isymBase=548, csym=3, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=18, cpd=0, iauxBase=1054, caux=21, rfdBase=549, crfd=33, XXX_bitfield=83886080, cbLineOffset=571, cbLine=0)
name:/usr/include/signal.h
pretty print:
// begin file /usr/include/signal.h
typedef int sig_atomic_t;
// end file /usr/include/signal.h
FileDescriptor(adr=4233248, rss=1, issBase=5409, cbSs=251, isymBase=551, csym=28, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=18, cpd=0, iauxBase=1075, caux=39, rfdBase=582, crfd=33, XXX_bitfield=83886080, cbLineOffset=571, cbLine=0)
name:/usr/include/sys/procset.h
pretty print:
// begin file /usr/include/sys/procset.h
typedef enum idtype {
P_PID = 0,
P_PPID = 1,
P_PGID = 2,
P_SID = 3,
P_CID = 4,
P_UID = 5,
P_GID = 6,
P_ALL = 7,
} idtype_t;
typedef enum idop {
POP_DIFF = 0,
POP_AND = 1,
POP_OR = 2,
POP_XOR = 3,
} idop_t;
typedef struct procset {
/* 0x0 */ idop_t p_op;
/* 0x4 */ idtype_t p_lidtype;
/* 0x8 */ id_t p_lid;
/* 0xC */ idtype_t p_ridtype;
/* 0x10 */ id_t p_rid;
} procset_t;
// end file /usr/include/sys/procset.h
FileDescriptor(adr=4233248, rss=1, issBase=5660, cbSs=124, isymBase=579, csym=17, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=18, cpd=0, iauxBase=1114, caux=30, rfdBase=615, crfd=33, XXX_bitfield=83886080, cbLineOffset=571, cbLine=0)
name:/usr/include/stdlib.h
pretty print:
// begin file /usr/include/stdlib.h
typedef struct {
/* 0x0 */ int quot;
/* 0x4 */ int rem;
} div_t;
typedef struct {
/* 0x0 */ long quot;
/* 0x4 */ long rem;
} ldiv_t;
typedef struct {
/* 0x0 */ long long quot;
/* 0x8 */ long long rem;
} lldiv_t;
// end file /usr/include/stdlib.h
FileDescriptor(adr=4233248, rss=1, issBase=5784, cbSs=86, isymBase=596, csym=3, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=18, cpd=0, iauxBase=1144, caux=18, rfdBase=648, crfd=33, XXX_bitfield=83886080, cbLineOffset=571, cbLine=0)
name:/usr/include/unistd.h
pretty print:
// begin file /usr/include/unistd.h
// end file /usr/include/unistd.h
FileDescriptor(adr=4233248, rss=1, issBase=5870, cbSs=109, isymBase=599, csym=7, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=18, cpd=0, iauxBase=1162, caux=22, rfdBase=681, crfd=33, XXX_bitfield=83886080, cbLineOffset=571, cbLine=0)
name:/usr/include/sys/uio.h
pretty print:
// begin file /usr/include/sys/uio.h
typedef struct iovec {
/* 0x0 */ void* iov_base;
/* 0x4 */ size_t iov_len;
} iovec_t;
// end file /usr/include/sys/uio.h
FileDescriptor(adr=4233248, rss=1, issBase=5979, cbSs=104, isymBase=606, csym=6, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=18, cpd=0, iauxBase=1184, caux=21, rfdBase=714, crfd=33, XXX_bitfield=83886080, cbLineOffset=571, cbLine=0)
name:/usr/include/sys/utime.h
pretty print:
// begin file /usr/include/sys/utime.h
struct utimbuf {
/* 0x0 */ time_t actime;
/* 0x4 */ time_t modtime;
};
// end file /usr/include/sys/utime.h
FileDescriptor(adr=4233248, rss=1, issBase=6083, cbSs=74, isymBase=612, csym=2, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=18, cpd=0, iauxBase=1205, caux=15, rfdBase=747, crfd=33, XXX_bitfield=83886080, cbLineOffset=571, cbLine=0)
name:/usr/include/utime.h
pretty print:
// begin file /usr/include/utime.h
// end file /usr/include/utime.h
FileDescriptor(adr=4233248, rss=1, issBase=6157, cbSs=77, isymBase=614, csym=2, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=18, cpd=0, iauxBase=1220, caux=15, rfdBase=780, crfd=33, XXX_bitfield=83886080, cbLineOffset=571, cbLine=0)
name:/usr/include/re_comp.h
pretty print:
// begin file /usr/include/re_comp.h
// end file /usr/include/re_comp.h
FileDescriptor(adr=4233248, rss=1, issBase=6234, cbSs=409, isymBase=616, csym=45, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=18, cpd=0, iauxBase=1235, caux=84, rfdBase=813, crfd=33, XXX_bitfield=83886080, cbLineOffset=571, cbLine=0)
name:/usr/include/sys/fcntl.h
pretty print:
// begin file /usr/include/sys/fcntl.h
typedef struct flock {
/* 0x0 */ short l_type;
/* 0x2 */ short l_whence;
/* 0x4 */ off_t l_start;
/* 0x8 */ off_t l_len;
/* 0xC */ long l_sysid;
/* 0x10 */ pid_t l_pid;
/* 0x14 */ long l_pad[4];
} flock_t;
typedef struct flock64 {
/* 0x0 */ short l_type;
/* 0x2 */ short l_whence;
/* 0x8 */ off64_t l_start;
/* 0x10 */ off64_t l_len;
/* 0x18 */ long l_sysid;
/* 0x1C */ pid_t l_pid;
/* 0x20 */ long l_pad[4];
} flock64_t;
struct dioattr {
/* 0x0 */ unsigned int d_mem;
/* 0x4 */ unsigned int d_miniosz;
/* 0x8 */ unsigned int d_maxiosz;
};
struct fsxattr {
/* 0x0 */ __uint32_t fsx_xflags;
/* 0x4 */ __uint32_t fsx_extsize;
/* 0x8 */ __uint32_t fsx_nextents;
/* 0xC */ unsigned char fsx_pad[16];
};
struct getbmap {
/* 0x0 */ __int64_t bmv_offset;
/* 0x8 */ __int64_t bmv_block;
/* 0x10 */ __int64_t bmv_length;
/* 0x18 */ __int32_t bmv_count;
/* 0x1C */ __int32_t bmv_entries;
};
struct fsdmidata {
/* 0x0 */ __int32_t fsd_dmevmask;
/* 0x4 */ unsigned short fsd_padding;
/* 0x6 */ unsigned short fsd_dmstate;
};
// end file /usr/include/sys/fcntl.h
FileDescriptor(adr=4233248, rss=1, issBase=6643, cbSs=74, isymBase=661, csym=2, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=18, cpd=0, iauxBase=1319, caux=15, rfdBase=846, crfd=33, XXX_bitfield=83886080, cbLineOffset=571, cbLine=0)
name:/usr/include/fcntl.h
pretty print:
// begin file /usr/include/fcntl.h
// end file /usr/include/fcntl.h
FileDescriptor(adr=4233248, rss=1, issBase=6717, cbSs=178, isymBase=663, csym=19, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=18, cpd=0, iauxBase=1334, caux=38, rfdBase=879, crfd=33, XXX_bitfield=83886080, cbLineOffset=571, cbLine=0)
name:/usr/include/sys/wait.h
pretty print:
// begin file /usr/include/sys/wait.h
typedef union wait {
/* 0x0 */ int w_status;
/* 0x0 */ struct {
/* 0x0 */ unsigned int w_Filler : 16;
/* 0x2 */ unsigned int w_Retcode : 8;
/* 0x3 */ unsigned int w_Coredump : 1;
/* 0x3 */ unsigned int w_Termsig : 7;
} w_T;
/* 0x0 */ struct {
/* 0x0 */ unsigned int w_Filler : 16;
/* 0x2 */ unsigned int w_Stopsig : 8;
/* 0x3 */ unsigned int w_Stopval : 8;
} w_S;
} wait_t;
// end file /usr/include/sys/wait.h
FileDescriptor(adr=4233248, rss=1, issBase=6895, cbSs=320, isymBase=682, csym=30, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=18, cpd=0, iauxBase=1372, caux=36, rfdBase=912, crfd=33, XXX_bitfield=83886080, cbLineOffset=571, cbLine=0)
name:/usr/include/sys/resource.h
pretty print:
// begin file /usr/include/sys/resource.h
struct rusage {
/* 0x0 */ timeval ru_utime;
/* 0x8 */ timeval ru_stime;
/* 0x10 */ long ru_maxrss;
/* 0x14 */ long ru_ixrss;
/* 0x18 */ long ru_idrss;
/* 0x1C */ long ru_isrss;
/* 0x20 */ long ru_minflt;
/* 0x24 */ long ru_majflt;
/* 0x28 */ long ru_nswap;
/* 0x2C */ long ru_inblock;
/* 0x30 */ long ru_oublock;
/* 0x34 */ long ru_msgsnd;
/* 0x38 */ long ru_msgrcv;
/* 0x3C */ long ru_nsignals;
/* 0x40 */ long ru_nvcsw;
/* 0x44 */ long ru_nivcsw;
};
typedef unsigned long rlim_t;
struct rlimit {
/* 0x0 */ rlim_t rlim_cur;
/* 0x4 */ rlim_t rlim_max;
};
typedef __uint64_t rlim64_t;
struct rlimit64 {
/* 0x0 */ rlim64_t rlim_cur;
/* 0x8 */ rlim64_t rlim_max;
};
// end file /usr/include/sys/resource.h
FileDescriptor(adr=4233248, rss=1, issBase=7215, cbSs=273, isymBase=712, csym=18, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=18, cpd=0, iauxBase=1408, caux=33, rfdBase=945, crfd=33, XXX_bitfield=83886080, cbLineOffset=571, cbLine=0)
name:/usr/include/sys/elftypes.h
pretty print:
// begin file /usr/include/sys/elftypes.h
typedef unsigned long Elf32_Addr;
typedef unsigned short Elf32_Half;
typedef unsigned long Elf32_Off;
typedef long Elf32_Sword;
typedef unsigned long Elf32_Word;
typedef unsigned char Elf32_Byte;
typedef unsigned short Elf32_Section;
typedef __uint64_t Elf64_Addr;
typedef unsigned short Elf64_Half;
typedef __uint64_t Elf64_Off;
typedef __int32_t Elf64_Sword;
typedef __int64_t Elf64_Sxword;
typedef __uint32_t Elf64_Word;
typedef __uint64_t Elf64_Xword;
typedef unsigned char Elf64_Byte;
typedef unsigned short Elf64_Section;
// end file /usr/include/sys/elftypes.h
FileDescriptor(adr=4233248, rss=1, issBase=7488, cbSs=543, isymBase=730, csym=72, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=18, cpd=0, iauxBase=1441, caux=174, rfdBase=978, crfd=33, XXX_bitfield=83886080, cbLineOffset=571, cbLine=0)
name:/usr/include/elf.h
pretty print:
// begin file /usr/include/elf.h
typedef struct {