hs_err_pid25922.log
147 KB
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
#
# A fatal error has been detected by the Java Runtime Environment:
#
# SIGSEGV (0xb) at pc=0x00007f46c452c1b9, pid=25922, tid=139943513347840
#
# JRE version: OpenJDK Runtime Environment (7.0_55-b14) (build 1.7.0_55-b14)
# Java VM: OpenJDK 64-Bit Server VM (24.51-b03 mixed mode linux-amd64 compressed oops)
# Problematic frame:
# C [libwebkitgtk-1.0.so.0+0x4621b9] webkit_web_view_get_type+0x2489
#
# Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again
#
# If you would like to submit a bug report, please include
# instructions on how to reproduce the bug and visit:
# http://icedtea.classpath.org/bugzilla
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#
--------------- T H R E A D ---------------
Current thread (0x00007f471c00a800): JavaThread "main" [_thread_in_native, id=25923, stack(0x00007f472356d000,0x00007f472366e000)]
siginfo:si_signo=SIGSEGV: si_errno=0, si_code=1 (SEGV_MAPERR), si_addr=0x0000000000000000
Registers:
RAX=0x00007f471c880870, RBX=0x00007f47236694b0, RCX=0x00007f471cfee0a0, RDX=0x0000000000000000
RSP=0x00007f4723669460, RBP=0x00007f47236694f0, RSI=0x00007f471cfee0a0, RDI=0x0000000000000000
R8 =0x00007f471cfee0a0, R9 =0x00007f471cfee0a0, R10=0x0000000000000001, R11=0x0000000000000000
R12=0x00007f471c2e7e50, R13=0x00007f471c880a00, R14=0x0000000000000000, R15=0x00007f4723669fd0
RIP=0x00007f46c452c1b9, EFLAGS=0x0000000000010246, CSGSFS=0x0000000000000033, ERR=0x0000000000000004
TRAPNO=0x000000000000000e
Top of Stack: (sp=0x00007f4723669460)
0x00007f4723669460: 3ff0000000000000 00007f4723669490
0x00007f4723669470: 000000000000000b 0000000100000010
0x00007f4723669480: 00007f471d6e9bd0 0000000000000116
0x00007f4723669490: 0000000000000000 00007f4723669448
0x00007f47236694a0: 0000000000000000 0000000100000001
0x00007f47236694b0: 0000000000000000 0000000100000001
0x00007f47236694c0: 00007f47236696c0 00007f4723669610
0x00007f47236694d0: 00007f471c271e60 00007f46c452c0d0
0x00007f47236694e0: 00007f471c880a00 00007f4723669660
0x00007f47236694f0: 00007f47236696c0 00007f46e7af1815
0x00007f4723669500: 00007f4711a26cb0 0000000000000000
0x00007f4723669510: 00007f471c271e60 0000000000000002
0x00007f4723669520: 00007f47236696c0 00007f4711a283b8
0x00007f4723669530: 00007f4723669610 0000000000000188
0x00007f4723669540: 00007f4740000002 00007f4711748569
0x00007f4723669550: 0000000000000000 00007f471c880a00
0x00007f4723669560: 00007f4723669610 00007f471c271eb0
0x00007f4723669570: 0000000000000000 0000000000000007
0x00007f4723669580: 0000000000000000 00007f471c271e60
0x00007f4723669590: 00007f4723669660 00007f4711a39afb
0x00007f47236695a0: 00007f471d686b38 00007f4723669630
0x00007f47236695b0: 00007f47236696c0 00007f471c880a00
0x00007f47236695c0: 00000000e7af17a0 00007f4723669660
0x00007f47236695d0: 00007f471c271e60 00007f471c271eb0
0x00007f47236695e0: 0000000000006346 00007f471c271f20
0x00007f47236695f0: 00007f4723669610 0000000000000029
0x00007f4723669600: 00007f4723669790 00007f4723669650
0x00007f4723669610: 0000000000000014 0000000000000000
0x00007f4723669620: 0000000000000000 00007f471c181b40
0x00007f4723669630: 00007f4700000029 00007f4711a4d163
0x00007f4723669640: 00007f471cfee0a0 00007f4711a2ca84
0x00007f4723669650: 0000000000000000 00007f471c880a00
Instructions: (pc=0x00007f46c452c1b9)
0x00007f46c452c199: 00 c7 45 a4 00 00 00 00 e8 8a db ff ff 4c 89 ef
0x00007f46c452c1a9: 48 89 c6 e8 bf e5 fb ff 48 8b 40 70 48 8b 78 10
0x00007f46c452c1b9: 48 8b 07 ff 10 48 8b 95 78 ff ff ff 48 89 c7 48
0x00007f46c452c1c9: 89 d9 4c 89 e6 e8 ed da 01 00 41 8d 46 01 49 83
Register to memory mapping:
RAX=0x00007f471c880870 is an unknown value
RBX=0x00007f47236694b0 is pointing into the stack for thread: 0x00007f471c00a800
RCX=0x00007f471cfee0a0 is an unknown value
RDX=0x0000000000000000 is an unknown value
RSP=0x00007f4723669460 is pointing into the stack for thread: 0x00007f471c00a800
RBP=0x00007f47236694f0 is pointing into the stack for thread: 0x00007f471c00a800
RSI=0x00007f471cfee0a0 is an unknown value
RDI=0x0000000000000000 is an unknown value
R8 =0x00007f471cfee0a0 is an unknown value
R9 =0x00007f471cfee0a0 is an unknown value
R10=0x0000000000000001 is an unknown value
R11=0x0000000000000000 is an unknown value
R12=0x00007f471c2e7e50 is an unknown value
R13=0x00007f471c880a00 is an unknown value
R14=0x0000000000000000 is an unknown value
R15=0x00007f4723669fd0 is pointing into the stack for thread: 0x00007f471c00a800
Stack: [0x00007f472356d000,0x00007f472366e000], sp=0x00007f4723669460, free space=1009k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
C [libwebkitgtk-1.0.so.0+0x4621b9] webkit_web_view_get_type+0x2489
C [libgtk-x11-2.0.so.0+0x12d815] gtk_marshal_VOID__UINT_STRING+0x105
Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
J org.eclipse.swt.internal.gtk.OS._gtk_main_do_event(J)V
J org.eclipse.swt.internal.gtk.OS.gtk_main_do_event(J)V
j org.eclipse.swt.widgets.Display.eventProc(JJ)J+124
v ~StubRoutines::call_stub
j org.eclipse.swt.internal.gtk.OS._gdk_window_process_updates(JZ)V+0
j org.eclipse.swt.internal.gtk.OS.gdk_window_process_updates(JZ)V+9
j org.eclipse.swt.widgets.ProgressBar.updateBar(III)V+52
j org.eclipse.swt.widgets.ProgressBar.setMinimum(I)V+50
j org.eclipse.jface.dialogs.ProgressIndicator.done()V+12
j org.eclipse.jface.dialogs.ProgressIndicator.beginTask(I)V+1
j org.eclipse.jface.action.StatusLine.beginTask(Ljava/lang/String;I)V+71
j org.eclipse.jface.action.StatusLineManager$1.beginTask(Ljava/lang/String;I)V+6
j org.eclipse.ui.internal.browser.BrowserViewer$6.changed(Lorg/eclipse/swt/browser/ProgressEvent;)V+112
j org.eclipse.swt.browser.WebKit.webkit_notify_progress(JJ)J+80
j org.eclipse.swt.browser.WebKit.webViewProc(JJJ)J+80
j org.eclipse.swt.browser.WebKit.Proc(JJJ)J+59
v ~StubRoutines::call_stub
J org.eclipse.swt.internal.gtk.OS._g_main_context_iteration(JZ)Z
J org.eclipse.swt.internal.gtk.OS.g_main_context_iteration(JZ)Z
j org.eclipse.swt.widgets.Display.readAndDispatch()Z+36
J org.eclipse.ui.internal.Workbench.runEventLoop(Lorg/eclipse/jface/window/Window$IExceptionHandler;Lorg/eclipse/swt/widgets/Display;)V
j org.eclipse.ui.internal.Workbench.runUI()I+555
j org.eclipse.ui.internal.Workbench.access$4(Lorg/eclipse/ui/internal/Workbench;)I+1
j org.eclipse.ui.internal.Workbench$7.run()V+73
j org.eclipse.core.databinding.observable.Realm.runWithDefault(Lorg/eclipse/core/databinding/observable/Realm;Ljava/lang/Runnable;)V+12
j org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+18
j org.eclipse.ui.PlatformUI.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+2
j org.eclipse.ui.internal.ide.application.IDEApplication.start(Lorg/eclipse/equinox/app/IApplicationContext;)Ljava/lang/Object;+108
j org.eclipse.equinox.internal.app.EclipseAppHandle.run(Ljava/lang/Object;)Ljava/lang/Object;+135
j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(Ljava/lang/Object;)Ljava/lang/Object;+103
j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(Ljava/lang/Object;)Ljava/lang/Object;+29
j org.eclipse.core.runtime.adaptor.EclipseStarter.run(Ljava/lang/Object;)Ljava/lang/Object;+119
j org.eclipse.core.runtime.adaptor.EclipseStarter.run([Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Object;+183
v ~StubRoutines::call_stub
j sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0
j sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87
j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6
j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+57
j org.eclipse.equinox.launcher.Main.invokeFramework([Ljava/lang/String;[Ljava/net/URL;)V+211
j org.eclipse.equinox.launcher.Main.basicRun([Ljava/lang/String;)V+126
j org.eclipse.equinox.launcher.Main.run([Ljava/lang/String;)I+4
j org.eclipse.equinox.launcher.Main.main([Ljava/lang/String;)V+10
v ~StubRoutines::call_stub
--------------- P R O C E S S ---------------
Java Threads: ( => current thread )
0x00007f471d747000 JavaThread "Thread-22" daemon [_thread_blocked, id=28722, stack(0x00007f46cfeff000,0x00007f46d0000000)]
0x00007f46f8106800 JavaThread "Worker-14" [_thread_blocked, id=28623, stack(0x00007f46cf082000,0x00007f46cf183000)]
0x00007f471d58d800 JavaThread "org.eclipse.jface.text.reconciler.MonoReconciler" daemon [_thread_blocked, id=27847, stack(0x00007f46d7236000,0x00007f46d7337000)]
0x00007f4704001800 JavaThread "Worker-12" [_thread_blocked, id=27616, stack(0x00007f46d41ad000,0x00007f46d42ae000)]
0x00007f46e822a000 JavaThread "Worker-10" [_thread_blocked, id=27250, stack(0x00007f46d40ac000,0x00007f46d41ad000)]
0x00007f471d390000 JavaThread "org.eclipse.jface.text.reconciler.MonoReconciler" daemon [_thread_blocked, id=26044, stack(0x00007f46cfbfc000,0x00007f46cfcfd000)]
0x00007f46d801a800 JavaThread "[ThreadPool Manager] - Idle Thread" daemon [_thread_blocked, id=25983, stack(0x00007f46cfcfd000,0x00007f46cfdfe000)]
0x00007f46e8112000 JavaThread "Java indexing" daemon [_thread_blocked, id=25963, stack(0x00007f46d6ea1000,0x00007f46d6fa2000)]
0x000000000106c000 JavaThread "Worker-JM" [_thread_blocked, id=25948, stack(0x00007f46e43c2000,0x00007f46e44c3000)]
0x0000000000f9e800 JavaThread "[Timer] - Main Queue Handler" daemon [_thread_blocked, id=25946, stack(0x00007f46e44c3000,0x00007f46e45c4000)]
0x0000000000f61000 JavaThread "Framework Event Dispatcher" daemon [_thread_blocked, id=25944, stack(0x00007f46e46c5000,0x00007f46e47c6000)]
0x00007f471c41a000 JavaThread "Start Level Event Dispatcher" daemon [_thread_blocked, id=25940, stack(0x00007f46e47c6000,0x00007f46e48c7000)]
0x00007f471c407000 JavaThread "State Data Manager" daemon [_thread_blocked, id=25939, stack(0x00007f46e48c7000,0x00007f46e49c8000)]
0x00007f471c3f6000 JavaThread "Framework Active Thread" [_thread_blocked, id=25938, stack(0x00007f46e49c8000,0x00007f46e4ac9000)]
0x00007f471c129800 JavaThread "Service Thread" daemon [_thread_blocked, id=25932, stack(0x00007f4711f78000,0x00007f4712079000)]
0x00007f471c127000 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=25931, stack(0x00007f4712079000,0x00007f471217a000)]
0x00007f471c124000 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=25930, stack(0x00007f471217a000,0x00007f471227b000)]
0x00007f471c122000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=25929, stack(0x00007f471227b000,0x00007f471237c000)]
0x00007f471c0fe800 JavaThread "Finalizer" daemon [_thread_blocked, id=25928, stack(0x00007f47128fd000,0x00007f47129fe000)]
0x00007f471c0fc800 JavaThread "Reference Handler" daemon [_thread_blocked, id=25927, stack(0x00007f47129fe000,0x00007f4712aff000)]
=>0x00007f471c00a800 JavaThread "main" [_thread_in_native, id=25923, stack(0x00007f472356d000,0x00007f472366e000)]
Other Threads:
0x00007f471c0f8800 VMThread [stack: 0x00007f4712aff000,0x00007f4712c00000] [id=25926]
0x00007f471c134000 WatcherThread [stack: 0x00007f4711e77000,0x00007f4711f78000] [id=25933]
VM state:not at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: None
Heap
PSYoungGen total 77312K, used 2471K [0x00000000f8000000, 0x00000000fd400000, 0x0000000100000000)
eden space 68608K, 3% used [0x00000000f8000000,0x00000000f8269f60,0x00000000fc300000)
from space 8704K, 0% used [0x00000000fcb80000,0x00000000fcb80000,0x00000000fd400000)
to space 8704K, 0% used [0x00000000fc300000,0x00000000fc300000,0x00000000fcb80000)
ParOldGen total 63488K, used 22407K [0x00000000e8000000, 0x00000000ebe00000, 0x00000000f8000000)
object space 63488K, 35% used [0x00000000e8000000,0x00000000e95e1cf8,0x00000000ebe00000)
PSPermGen total 59904K, used 56843K [0x00000000d8000000, 0x00000000dba80000, 0x00000000e8000000)
object space 59904K, 94% used [0x00000000d8000000,0x00000000db782e60,0x00000000dba80000)
Card table byte_map: [0x00007f47200b7000,0x00007f47201f8000] byte_map_base: 0x00007f471f9f7000
Polling page: 0x00007f4723694000
Code Cache [0x00007f4719000000, 0x00007f4719540000, 0x00007f471c000000)
total_blobs=1793 nmethods=1209 adapters=535 free_code_cache=43886Kb largest_free_block=44864128
Compilation events (10 events):
Event: 1539,350 Thread 0x00007f471c127000 1364 org.eclipse.swt.graphics.TextLayout::setStyle (746 bytes)
Event: 1539,371 Thread 0x00007f471c124000 1365 org.eclipse.swt.widgets.Widget::windowProc (544 bytes)
Event: 1539,411 Thread 0x00007f471c124000 nmethod 1365 0x00007f47194c9590 code [0x00007f47194c9a80, 0x00007f47194ca010]
Event: 1539,460 Thread 0x00007f471c127000 nmethod 1364 0x00007f4719534090 code [0x00007f4719534380, 0x00007f47195359a8]
Event: 1567,241 Thread 0x00007f471c124000 1366 org.eclipse.jface.action.ContributionItem::update (1 bytes)
Event: 1567,242 Thread 0x00007f471c124000 nmethod 1366 0x00007f471951dc50 code [0x00007f471951dd80, 0x00007f471951ddd8]
Event: 1567,330 Thread 0x00007f471c127000 1367 org.eclipse.swt.widgets.Widget::hooks (18 bytes)
Event: 1567,332 Thread 0x00007f471c127000 nmethod 1367 0x00007f471951d8d0 code [0x00007f471951da20, 0x00007f471951db58]
Event: 1571,256 Thread 0x00007f471c124000 1368 org.eclipse.ui.internal.expressions.LegacyActionSetExpression::evaluate (90 bytes)
Event: 1571,261 Thread 0x00007f471c124000 nmethod 1368 0x00007f471951f450 code [0x00007f471951f5e0, 0x00007f471951f898]
GC Heap History (10 events):
Event: 1397,622 GC heap before
{Heap before GC invocations=62 (full 24):
PSYoungGen total 77312K, used 64K [0x00000000f8000000, 0x00000000fd500000, 0x0000000100000000)
eden space 68608K, 0% used [0x00000000f8000000,0x00000000f8000000,0x00000000fc300000)
from space 8704K, 0% used [0x00000000fcc80000,0x00000000fcc90000,0x00000000fd500000)
to space 9216K, 0% used [0x00000000fc300000,0x00000000fc300000,0x00000000fcc00000)
ParOldGen total 63488K, used 19154K [0x00000000e8000000, 0x00000000ebe00000, 0x00000000f8000000)
object space 63488K, 30% used [0x00000000e8000000,0x00000000e92b4ab8,0x00000000ebe00000)
PSPermGen total 57856K, used 54684K [0x00000000d8000000, 0x00000000db880000, 0x00000000e8000000)
object space 57856K, 94% used [0x00000000d8000000,0x00000000db5673f8,0x00000000db880000)
Event: 1397,807 GC heap after
Heap after GC invocations=62 (full 24):
PSYoungGen total 77312K, used 0K [0x00000000f8000000, 0x00000000fd500000, 0x0000000100000000)
eden space 68608K, 0% used [0x00000000f8000000,0x00000000f8000000,0x00000000fc300000)
from space 8704K, 0% used [0x00000000fcc80000,0x00000000fcc80000,0x00000000fd500000)
to space 9216K, 0% used [0x00000000fc300000,0x00000000fc300000,0x00000000fcc00000)
ParOldGen total 63488K, used 19096K [0x00000000e8000000, 0x00000000ebe00000, 0x00000000f8000000)
object space 63488K, 30% used [0x00000000e8000000,0x00000000e92a62d0,0x00000000ebe00000)
PSPermGen total 57344K, used 54684K [0x00000000d8000000, 0x00000000db800000, 0x00000000e8000000)
object space 57344K, 95% used [0x00000000d8000000,0x00000000db5673f8,0x00000000db800000)
}
Event: 1460,977 GC heap before
{Heap before GC invocations=63 (full 24):
PSYoungGen total 77312K, used 2666K [0x00000000f8000000, 0x00000000fd500000, 0x0000000100000000)
eden space 68608K, 3% used [0x00000000f8000000,0x00000000f829a9c8,0x00000000fc300000)
from space 8704K, 0% used [0x00000000fcc80000,0x00000000fcc80000,0x00000000fd500000)
to space 9216K, 0% used [0x00000000fc300000,0x00000000fc300000,0x00000000fcc00000)
ParOldGen total 63488K, used 19096K [0x00000000e8000000, 0x00000000ebe00000, 0x00000000f8000000)
object space 63488K, 30% used [0x00000000e8000000,0x00000000e92a62d0,0x00000000ebe00000)
PSPermGen total 57344K, used 54687K [0x00000000d8000000, 0x00000000db800000, 0x00000000e8000000)
object space 57344K, 95% used [0x00000000d8000000,0x00000000db567c48,0x00000000db800000)
Event: 1460,987 GC heap after
Heap after GC invocations=63 (full 24):
PSYoungGen total 69120K, used 64K [0x00000000f8000000, 0x00000000fd400000, 0x0000000100000000)
eden space 68608K, 0% used [0x00000000f8000000,0x00000000f8000000,0x00000000fc300000)
from space 512K, 12% used [0x00000000fc300000,0x00000000fc310000,0x00000000fc380000)
to space 8704K, 0% used [0x00000000fcb80000,0x00000000fcb80000,0x00000000fd400000)
ParOldGen total 63488K, used 19096K [0x00000000e8000000, 0x00000000ebe00000, 0x00000000f8000000)
object space 63488K, 30% used [0x00000000e8000000,0x00000000e92a62d0,0x00000000ebe00000)
PSPermGen total 57344K, used 54687K [0x00000000d8000000, 0x00000000db800000, 0x00000000e8000000)
object space 57344K, 95% used [0x00000000d8000000,0x00000000db567c48,0x00000000db800000)
}
Event: 1460,987 GC heap before
{Heap before GC invocations=64 (full 25):
PSYoungGen total 69120K, used 64K [0x00000000f8000000, 0x00000000fd400000, 0x0000000100000000)
eden space 68608K, 0% used [0x00000000f8000000,0x00000000f8000000,0x00000000fc300000)
from space 512K, 12% used [0x00000000fc300000,0x00000000fc310000,0x00000000fc380000)
to space 8704K, 0% used [0x00000000fcb80000,0x00000000fcb80000,0x00000000fd400000)
ParOldGen total 63488K, used 19096K [0x00000000e8000000, 0x00000000ebe00000, 0x00000000f8000000)
object space 63488K, 30% used [0x00000000e8000000,0x00000000e92a62d0,0x00000000ebe00000)
PSPermGen total 57344K, used 54687K [0x00000000d8000000, 0x00000000db800000, 0x00000000e8000000)
object space 57344K, 95% used [0x00000000d8000000,0x00000000db567c48,0x00000000db800000)
Event: 1461,216 GC heap after
Heap after GC invocations=64 (full 25):
PSYoungGen total 69120K, used 0K [0x00000000f8000000, 0x00000000fd400000, 0x0000000100000000)
eden space 68608K, 0% used [0x00000000f8000000,0x00000000f8000000,0x00000000fc300000)
from space 512K, 0% used [0x00000000fc300000,0x00000000fc300000,0x00000000fc380000)
to space 8704K, 0% used [0x00000000fcb80000,0x00000000fcb80000,0x00000000fd400000)
ParOldGen total 63488K, used 19101K [0x00000000e8000000, 0x00000000ebe00000, 0x00000000f8000000)
object space 63488K, 30% used [0x00000000e8000000,0x00000000e92a77e0,0x00000000ebe00000)
PSPermGen total 56832K, used 54687K [0x00000000d8000000, 0x00000000db780000, 0x00000000e8000000)
object space 56832K, 96% used [0x00000000d8000000,0x00000000db567c48,0x00000000db780000)
}
Event: 1544,019 GC heap before
{Heap before GC invocations=65 (full 25):
PSYoungGen total 69120K, used 19522K [0x00000000f8000000, 0x00000000fd400000, 0x0000000100000000)
eden space 68608K, 28% used [0x00000000f8000000,0x00000000f9310a60,0x00000000fc300000)
from space 512K, 0% used [0x00000000fc300000,0x00000000fc300000,0x00000000fc380000)
to space 8704K, 0% used [0x00000000fcb80000,0x00000000fcb80000,0x00000000fd400000)
ParOldGen total 63488K, used 19101K [0x00000000e8000000, 0x00000000ebe00000, 0x00000000f8000000)
object space 63488K, 30% used [0x00000000e8000000,0x00000000e92a77e0,0x00000000ebe00000)
PSPermGen total 57344K, used 56840K [0x00000000d8000000, 0x00000000db800000, 0x00000000e8000000)
object space 57344K, 99% used [0x00000000d8000000,0x00000000db7821b8,0x00000000db800000)
Event: 1544,032 GC heap after
Heap after GC invocations=65 (full 25):
PSYoungGen total 77312K, used 3605K [0x00000000f8000000, 0x00000000fd400000, 0x0000000100000000)
eden space 68608K, 0% used [0x00000000f8000000,0x00000000f8000000,0x00000000fc300000)
from space 8704K, 41% used [0x00000000fcb80000,0x00000000fcf056e0,0x00000000fd400000)
to space 8704K, 0% used [0x00000000fc300000,0x00000000fc300000,0x00000000fcb80000)
ParOldGen total 63488K, used 19101K [0x00000000e8000000, 0x00000000ebe00000, 0x00000000f8000000)
object space 63488K, 30% used [0x00000000e8000000,0x00000000e92a77e0,0x00000000ebe00000)
PSPermGen total 57344K, used 56840K [0x00000000d8000000, 0x00000000db800000, 0x00000000e8000000)
object space 57344K, 99% used [0x00000000d8000000,0x00000000db7821b8,0x00000000db800000)
}
Event: 1544,032 GC heap before
{Heap before GC invocations=66 (full 26):
PSYoungGen total 77312K, used 3605K [0x00000000f8000000, 0x00000000fd400000, 0x0000000100000000)
eden space 68608K, 0% used [0x00000000f8000000,0x00000000f8000000,0x00000000fc300000)
from space 8704K, 41% used [0x00000000fcb80000,0x00000000fcf056e0,0x00000000fd400000)
to space 8704K, 0% used [0x00000000fc300000,0x00000000fc300000,0x00000000fcb80000)
ParOldGen total 63488K, used 19101K [0x00000000e8000000, 0x00000000ebe00000, 0x00000000f8000000)
object space 63488K, 30% used [0x00000000e8000000,0x00000000e92a77e0,0x00000000ebe00000)
PSPermGen total 57344K, used 56840K [0x00000000d8000000, 0x00000000db800000, 0x00000000e8000000)
object space 57344K, 99% used [0x00000000d8000000,0x00000000db7821b8,0x00000000db800000)
Event: 1544,315 GC heap after
Heap after GC invocations=66 (full 26):
PSYoungGen total 77312K, used 0K [0x00000000f8000000, 0x00000000fd400000, 0x0000000100000000)
eden space 68608K, 0% used [0x00000000f8000000,0x00000000f8000000,0x00000000fc300000)
from space 8704K, 0% used [0x00000000fcb80000,0x00000000fcb80000,0x00000000fd400000)
to space 8704K, 0% used [0x00000000fc300000,0x00000000fc300000,0x00000000fcb80000)
ParOldGen total 63488K, used 22407K [0x00000000e8000000, 0x00000000ebe00000, 0x00000000f8000000)
object space 63488K, 35% used [0x00000000e8000000,0x00000000e95e1cf8,0x00000000ebe00000)
PSPermGen total 59904K, used 56840K [0x00000000d8000000, 0x00000000dba80000, 0x00000000e8000000)
object space 59904K, 94% used [0x00000000d8000000,0x00000000db782050,0x00000000dba80000)
}
Deoptimization events (10 events):
Event: 393,256 Thread 0x00007f471c00a800 Uncommon trap: reason=unreached action=reinterpret pc=0x00007f47190cc4e4 method=java.lang.ref.SoftReference.get()Ljava/lang/Object; @ 6
Event: 699,223 Thread 0x00007f46dc00d000 Uncommon trap: reason=unreached action=reinterpret pc=0x00007f471921e728 method=java.lang.ref.SoftReference.get()Ljava/lang/Object; @ 6
Event: 699,234 Thread 0x00007f46dc00d000 Uncommon trap: reason=unreached action=reinterpret pc=0x00007f4719136494 method=java.lang.ref.SoftReference.get()Ljava/lang/Object; @ 6
Event: 699,245 Thread 0x00007f46dc00d000 Uncommon trap: reason=unreached action=reinterpret pc=0x00007f47191477ac method=org.eclipse.core.internal.registry.ReferenceMap.purge()V @ 39
Event: 898,273 Thread 0x00007f471c00a800 Uncommon trap: reason=unreached action=reinterpret pc=0x00007f47194c5068 method=org.eclipse.swt.graphics.TextLayout.computeRuns()V @ 895
Event: 964,895 Thread 0x00007f471c00a800 Uncommon trap: reason=predicate action=maybe_recompile pc=0x00007f471948f778 method=org.eclipse.swt.graphics.TextLayout.setStyle(Lorg/eclipse/swt/graphics/TextStyle;II)V @ 284
Event: 967,477 Thread 0x00007f471c00a800 Uncommon trap: reason=unreached action=reinterpret pc=0x00007f47194a16e8 method=org.eclipse.swt.widgets.Display.runDeferredEvents()Z @ 80
Event: 1227,615 Thread 0x00007f471c00a800 Uncommon trap: reason=null_check action=make_not_entrant pc=0x00007f47194d0a8c method=org.eclipse.jface.text.source.AnnotationRulerColumn.skip(Lorg/eclipse/jface/text/source/Annotation;)Z @ 15
Event: 1513,376 Thread 0x00007f471c00a800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00007f47194afdd0 method=java.util.Properties$LineReader.readLine()I @ 402
Event: 1544,316 Thread 0x00007f471c0fe800 Uncommon trap: reason=unreached action=reinterpret pc=0x00007f47193fdea0 method=java.util.WeakHashMap.eq(Ljava/lang/Object;Ljava/lang/Object;)Z @ 10
Internal exceptions (10 events):
Event: 312,970 Thread 0x00007f4700006800 Threw 0x00000000f81374e8 at /build/buildd/openjdk-7-7u55-2.4.7/build/openjdk/hotspot/src/share/vm/prims/jvm.cpp:1244
Event: 312,970 Thread 0x00007f4700006800 Threw 0x00000000f8137b48 at /build/buildd/openjdk-7-7u55-2.4.7/build/openjdk/hotspot/src/share/vm/prims/jvm.cpp:1244
Event: 312,970 Thread 0x00007f4700006800 Threw 0x00000000f813a4b8 at /build/buildd/openjdk-7-7u55-2.4.7/build/openjdk/hotspot/src/share/vm/prims/jvm.cpp:1244
Event: 312,970 Thread 0x00007f4700006800 Threw 0x00000000f813aa38 at /build/buildd/openjdk-7-7u55-2.4.7/build/openjdk/hotspot/src/share/vm/prims/jvm.cpp:1244
Event: 348,907 Thread 0x00007f471c00a800 Threw 0x00000000f8656fb8 at /build/buildd/openjdk-7-7u55-2.4.7/build/openjdk/hotspot/src/share/vm/prims/jni.cpp:717
Event: 699,223 Thread 0x00007f46dc00d000 Implicit null exception at 0x00007f471921de7b to 0x00007f471921e6f1
Event: 898,273 Thread 0x00007f471c00a800 Implicit null exception at 0x00007f47194c389c to 0x00007f47194c5041
Event: 1227,615 Thread 0x00007f471c00a800 Implicit null exception at 0x00007f47194ce664 to 0x00007f47194d0a25
Event: 1539,182 Thread 0x00007f471c00a800 Threw 0x00000000f90f7978 at /build/buildd/openjdk-7-7u55-2.4.7/build/openjdk/hotspot/src/share/vm/prims/jni.cpp:717
Event: 1539,183 Thread 0x00007f471c00a800 Threw 0x00000000f910fa28 at /build/buildd/openjdk-7-7u55-2.4.7/build/openjdk/hotspot/src/share/vm/prims/jni.cpp:717
Events (10 events):
Event: 1539,446 Executing VM operation: RevokeBias
Event: 1539,446 Executing VM operation: RevokeBias done
Event: 1544,019 Executing VM operation: ParallelGCSystemGC
Event: 1544,315 Executing VM operation: ParallelGCSystemGC done
Event: 1544,316 Thread 0x00007f471c0fe800 Uncommon trap: trap_request=0xffffffad fr.pc=0x00007f47193fdea0
Event: 1544,316 Thread 0x00007f471c0fe800 DEOPT PACKING pc=0x00007f47193fdea0 sp=0x00007f47129fc450
Event: 1544,316 Thread 0x00007f471c0fe800 DEOPT UNPACKING pc=0x00007f4719039045 sp=0x00007f47129fc328 mode 2
Event: 1544,316 Thread 0x00007f46f811e000 Thread added: 0x00007f46f811e000
Event: 1544,317 Thread 0x00007f46f811e000 Thread exited: 0x00007f46f811e000
Event: 1571,197 Thread 0x00007f471d747000 Thread added: 0x00007f471d747000
Dynamic libraries:
00400000-00401000 r-xp 00000000 08:06 8541 /usr/lib/jvm/java-7-openjdk-amd64/jre/bin/java
00600000-00601000 r--p 00000000 08:06 8541 /usr/lib/jvm/java-7-openjdk-amd64/jre/bin/java
00601000-00602000 rw-p 00001000 08:06 8541 /usr/lib/jvm/java-7-openjdk-amd64/jre/bin/java
00f2f000-01108000 rw-p 00000000 00:00 0 [heap]
d8000000-dba80000 rw-p 00000000 00:00 0
dba80000-dd880000 ---p 00000000 00:00 0
dd880000-e8000000 rw-p 00000000 00:00 0
e8000000-ebe00000 rw-p 00000000 00:00 0
ebe00000-f8000000 rw-p 00000000 00:00 0
f8000000-fd400000 rw-p 00000000 00:00 0
fd400000-fec00000 ---p 00000000 00:00 0
fec00000-100000000 rw-p 00000000 00:00 0
7f4672c47000-7f4672c50000 ---p 00000000 00:00 0
7f4672c50000-7f4672c60000 rw-p 00000000 00:00 0
7f4672c60000-7f4672c66000 ---p 00000000 00:00 0
7f4672c66000-7f4672c6f000 r--p 00000000 08:06 927431 /usr/share/locale-langpack/fr/LC_MESSAGES/eog.mo
7f4672c6f000-7f4672c7c000 r--s 000c0000 08:06 800606 /usr/share/eclipse/dropins/jdt/plugins/org.eclipse.jdt.debug_3.7.101.dist/jdimodel.jar
7f4672c7c000-7f4672c87000 r--s 00203000 08:06 787823 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/charsets.jar
7f4672c87000-7f4672c8a000 ---p 00000000 00:00 0
7f4672c8a000-7f4672d88000 rw-p 00000000 00:00 0
7f4672d88000-7f4672d89000 ---p 00000000 00:00 0
7f4672d89000-7f4673589000 rw-p 00000000 00:00 0 [stack:28723]
7f4673589000-7f46735a5000 r--s 0013b000 08:06 797510 /usr/share/eclipse/plugins/org.eclipse.team.ui_3.6.200.dist.jar
7f46735a5000-7f46735c3000 r--s 00176000 08:06 797468 /usr/share/eclipse/plugins/org.eclipse.team.cvs.ui_3.3.500.dist.jar
7f46735c3000-7f46735d4000 r--s 00112000 08:06 802246 /usr/lib/eclipse/dropins/sdk/plugins/org.eclipse.pde.core_3.8.0.dist.jar
7f46735d4000-7f467368a000 r--p 00000000 08:06 1175451 /usr/share/fonts/truetype/dejavu/DejaVuSans.ttf
7f467368a000-7f467368b000 ---p 00000000 00:00 0
7f467368b000-7f467378b000 rw-p 00000000 00:00 0
7f467378b000-7f467378c000 ---p 00000000 00:00 0
7f467378c000-7f4673790000 ---p 00000000 00:00 0
7f4673790000-7f46737a0000 rw-p 00000000 00:00 0
7f46737a0000-7f46737ab000 ---p 00000000 00:00 0
7f46737ab000-7f46737ac000 ---p 00000000 00:00 0
7f46737ac000-7f4673fac000 rw-p 00000000 00:00 0
7f4673fac000-7f4673fb0000 ---p 00000000 00:00 0
7f4673fb0000-7f4673fc0000 rw-p 00000000 00:00 0
7f4673fc0000-7f4673fd0000 ---p 00000000 00:00 0
7f4673fd0000-7f4673fe0000 rw-p 00000000 00:00 0
7f4673fe0000-7f4673ff0000 ---p 00000000 00:00 0
7f4673ff0000-7f4674000000 rw-p 00000000 00:00 0
7f4674000000-7f4674010000 ---p 00000000 00:00 0
7f4674010000-7f4674020000 rw-p 00000000 00:00 0
7f4674020000-7f4674030000 ---p 00000000 00:00 0
7f4674030000-7f4674040000 rw-p 00000000 00:00 0
7f4674040000-7f4674050000 ---p 00000000 00:00 0
7f4674050000-7f4674060000 rw-p 00000000 00:00 0
7f4674060000-7f4674070000 ---p 00000000 00:00 0
7f4674070000-7f4674080000 rw-p 00000000 00:00 0
7f4674080000-7f4674090000 ---p 00000000 00:00 0
7f4674090000-7f46740a0000 rw-p 00000000 00:00 0
7f46740a0000-7f46740b0000 ---p 00000000 00:00 0
7f46740b0000-7f46740c0000 rw-p 00000000 00:00 0
7f46740c0000-7f46740d0000 ---p 00000000 00:00 0
7f46740d0000-7f46740e0000 rw-p 00000000 00:00 0
7f46740e0000-7f46740f0000 ---p 00000000 00:00 0
7f46740f0000-7f4674100000 rw-p 00000000 00:00 0
7f4674100000-7f4674110000 ---p 00000000 00:00 0
7f4674110000-7f4674130000 rw-p 00000000 00:00 0
7f4674130000-7f4674140000 ---p 00000000 00:00 0
7f4674140000-7f4674150000 rw-p 00000000 00:00 0
7f4674150000-7f4674160000 ---p 00000000 00:00 0
7f4674160000-7f4674170000 rw-p 00000000 00:00 0
7f4674170000-7f4674579000 ---p 00000000 00:00 0
7f4674579000-7f467457d000 rw-p 00000000 00:00 0
7f467457d000-7f467457e000 ---p 00000000 00:00 0
7f467457e000-7f4674d7e000 rw-p 00000000 00:00 0 [stack:26009]
7f4674d7e000-7f4674d7f000 ---p 00000000 00:00 0
7f4674d7f000-7f467557f000 rw-p 00000000 00:00 0 [stack:26008]
7f467557f000-7f4675582000 r-xp 00000000 08:06 914684 /usr/lib/x86_64-linux-gnu/gio/modules/libgiognomeproxy.so
7f4675582000-7f4675782000 ---p 00003000 08:06 914684 /usr/lib/x86_64-linux-gnu/gio/modules/libgiognomeproxy.so
7f4675782000-7f4675783000 r--p 00003000 08:06 914684 /usr/lib/x86_64-linux-gnu/gio/modules/libgiognomeproxy.so
7f4675783000-7f4675784000 rw-p 00004000 08:06 914684 /usr/lib/x86_64-linux-gnu/gio/modules/libgiognomeproxy.so
7f4675784000-7f467579b000 r-xp 00000000 08:06 656888 /usr/lib/mozilla/plugins/libtotem-cone-plugin.so
7f467579b000-7f467599a000 ---p 00017000 08:06 656888 /usr/lib/mozilla/plugins/libtotem-cone-plugin.so
7f467599a000-7f467599c000 r--p 00016000 08:06 656888 /usr/lib/mozilla/plugins/libtotem-cone-plugin.so
7f467599c000-7f467599d000 rw-p 00018000 08:06 656888 /usr/lib/mozilla/plugins/libtotem-cone-plugin.so
7f467599d000-7f4675b9d000 rw-p 00000000 00:00 0
7f4675b9d000-7f467699d000 ---p 00000000 00:00 0
7f467699d000-7f46769d5000 r-xp 00000000 08:06 657256 /usr/lib/x86_64-linux-gnu/libnspr4.so
7f46769d5000-7f4676bd5000 ---p 00038000 08:06 657256 /usr/lib/x86_64-linux-gnu/libnspr4.so
7f4676bd5000-7f4676bd6000 r--p 00038000 08:06 657256 /usr/lib/x86_64-linux-gnu/libnspr4.so
7f4676bd6000-7f4676bd7000 rw-p 00039000 08:06 657256 /usr/lib/x86_64-linux-gnu/libnspr4.so
7f4676bd7000-7f4676bda000 rw-p 00000000 00:00 0
7f4676bda000-7f4676bde000 r-xp 00000000 08:06 657258 /usr/lib/x86_64-linux-gnu/libplc4.so
7f4676bde000-7f4676ddd000 ---p 00004000 08:06 657258 /usr/lib/x86_64-linux-gnu/libplc4.so
7f4676ddd000-7f4676dde000 r--p 00003000 08:06 657258 /usr/lib/x86_64-linux-gnu/libplc4.so
7f4676dde000-7f4676ddf000 rw-p 00004000 08:06 657258 /usr/lib/x86_64-linux-gnu/libplc4.so
7f4676ddf000-7f4676de2000 r-xp 00000000 08:06 653203 /usr/lib/x86_64-linux-gnu/libplds4.so
7f4676de2000-7f4676fe1000 ---p 00003000 08:06 653203 /usr/lib/x86_64-linux-gnu/libplds4.so
7f4676fe1000-7f4676fe2000 r--p 00002000 08:06 653203 /usr/lib/x86_64-linux-gnu/libplds4.so
7f4676fe2000-7f4676fe3000 rw-p 00003000 08:06 653203 /usr/lib/x86_64-linux-gnu/libplds4.so
7f4676fe3000-7f4677008000 r-xp 00000000 08:06 659178 /usr/lib/x86_64-linux-gnu/libnssutil3.so
7f4677008000-7f4677207000 ---p 00025000 08:06 659178 /usr/lib/x86_64-linux-gnu/libnssutil3.so
7f4677207000-7f467720d000 r--p 00024000 08:06 659178 /usr/lib/x86_64-linux-gnu/libnssutil3.so
7f467720d000-7f467720e000 rw-p 0002a000 08:06 659178 /usr/lib/x86_64-linux-gnu/libnssutil3.so
7f467720e000-7f4677340000 r-xp 00000000 08:06 661509 /usr/lib/x86_64-linux-gnu/libnss3.so
7f4677340000-7f4677540000 ---p 00132000 08:06 661509 /usr/lib/x86_64-linux-gnu/libnss3.so
7f4677540000-7f4677544000 r--p 00132000 08:06 661509 /usr/lib/x86_64-linux-gnu/libnss3.so
7f4677544000-7f4677546000 rw-p 00136000 08:06 661509 /usr/lib/x86_64-linux-gnu/libnss3.so
7f4677546000-7f4677547000 rw-p 00000000 00:00 0
7f4677547000-7f467756f000 r-xp 00000000 08:06 661507 /usr/lib/x86_64-linux-gnu/libsmime3.so
7f467756f000-7f467776f000 ---p 00028000 08:06 661507 /usr/lib/x86_64-linux-gnu/libsmime3.so
7f467776f000-7f4677772000 r--p 00028000 08:06 661507 /usr/lib/x86_64-linux-gnu/libsmime3.so
7f4677772000-7f4677773000 rw-p 0002b000 08:06 661507 /usr/lib/x86_64-linux-gnu/libsmime3.so
7f4677773000-7f46777b9000 r-xp 00000000 08:06 661503 /usr/lib/x86_64-linux-gnu/libssl3.so
7f46777b9000-7f46779b9000 ---p 00046000 08:06 661503 /usr/lib/x86_64-linux-gnu/libssl3.so
7f46779b9000-7f46779bc000 r--p 00046000 08:06 661503 /usr/lib/x86_64-linux-gnu/libssl3.so
7f46779bc000-7f46779bd000 rw-p 00049000 08:06 661503 /usr/lib/x86_64-linux-gnu/libssl3.so
7f46779bd000-7f46779be000 rw-p 00000000 00:00 0
7f46779be000-7f46779bf000 r-xp 00000000 08:06 657129 /usr/lib/x86_64-linux-gnu/libgthread-2.0.so.0.4000.0
7f46779bf000-7f4677bbe000 ---p 00001000 08:06 657129 /usr/lib/x86_64-linux-gnu/libgthread-2.0.so.0.4000.0
7f4677bbe000-7f4677bbf000 r--p 00000000 08:06 657129 /usr/lib/x86_64-linux-gnu/libgthread-2.0.so.0.4000.0
7f4677bbf000-7f4677bc0000 rw-p 00001000 08:06 657129 /usr/lib/x86_64-linux-gnu/libgthread-2.0.so.0.4000.0
7f4677bc0000-7f4678d3e000 r-xp 00000000 08:06 784401 /usr/lib/adobe-flashplugin/libflashplayer.so
7f4678d3e000-7f4678f3d000 ---p 0117e000 08:06 784401 /usr/lib/adobe-flashplugin/libflashplayer.so
7f4678f3d000-7f4679012000 rw-p 0117d000 08:06 784401 /usr/lib/adobe-flashplugin/libflashplayer.so
7f4679012000-7f4679121000 rw-p 00000000 00:00 0
7f4679121000-7f4679122000 ---p 00000000 00:00 0
7f4679122000-7f4679922000 rw-p 00000000 00:00 0 [stack:25996]
7f4679922000-7f4679923000 ---p 00000000 00:00 0
7f4679923000-7f467a123000 rw-p 00000000 00:00 0 [stack:25995]
7f467a123000-7f467a124000 ---p 00000000 00:00 0
7f467a124000-7f467a924000 rw-p 00000000 00:00 0 [stack:25994]
7f467a924000-7f467a9b4000 r-xp 00000000 08:06 787340 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/IcedTeaPlugin.so
7f467a9b4000-7f467abb3000 ---p 00090000 08:06 787340 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/IcedTeaPlugin.so
7f467abb3000-7f467abb4000 r--p 0008f000 08:06 787340 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/IcedTeaPlugin.so
7f467abb4000-7f467abb5000 rw-p 00090000 08:06 787340 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/IcedTeaPlugin.so
7f467abb5000-7f467abb6000 r-xp 00000000 08:06 664515 /usr/lib/mozilla/plugins/librhythmbox-itms-detection-plugin.so
7f467abb6000-7f467adb5000 ---p 00001000 08:06 664515 /usr/lib/mozilla/plugins/librhythmbox-itms-detection-plugin.so
7f467adb5000-7f467adb6000 r--p 00000000 08:06 664515 /usr/lib/mozilla/plugins/librhythmbox-itms-detection-plugin.so
7f467adb6000-7f467adb7000 rw-p 00001000 08:06 664515 /usr/lib/mozilla/plugins/librhythmbox-itms-detection-plugin.so
7f467adb7000-7f467adc9000 r-xp 00000000 08:06 656886 /usr/lib/mozilla/plugins/libtotem-narrowspace-plugin.so
7f467adc9000-7f467afc9000 ---p 00012000 08:06 656886 /usr/lib/mozilla/plugins/libtotem-narrowspace-plugin.so
7f467afc9000-7f467afca000 r--p 00012000 08:06 656886 /usr/lib/mozilla/plugins/libtotem-narrowspace-plugin.so
7f467afca000-7f467afcb000 rw-p 00013000 08:06 656886 /usr/lib/mozilla/plugins/libtotem-narrowspace-plugin.so
7f467afcb000-7f467afe3000 r-xp 00000000 08:06 656887 /usr/lib/mozilla/plugins/libtotem-gmp-plugin.so
7f467afe3000-7f467b1e3000 ---p 00018000 08:06 656887 /usr/lib/mozilla/plugins/libtotem-gmp-plugin.so
7f467b1e3000-7f467b1e4000 r--p 00018000 08:06 656887 /usr/lib/mozilla/plugins/libtotem-gmp-plugin.so
7f467b1e4000-7f467b1e5000 rw-p 00019000 08:06 656887 /usr/lib/mozilla/plugins/libtotem-gmp-plugin.so
7f467b1e5000-7f467b209000 r-xp 00000000 08:06 656490 /usr/lib/x86_64-linux-gnu/libjson-glib-1.0.so.0.1600.2
7f467b209000-7f467b408000 ---p 00024000 08:06 656490 /usr/lib/x86_64-linux-gnu/libjson-glib-1.0.so.0.1600.2
7f467b408000-7f467b409000 r--p 00023000 08:06 656490 /usr/lib/x86_64-linux-gnu/libjson-glib-1.0.so.0.1600.2
7f467b409000-7f467b40a000 rw-p 00024000 08:06 656490 /usr/lib/x86_64-linux-gnu/libjson-glib-1.0.so.0.1600.2
7f467b40a000-7f467b40e000 r-xp 00000000 08:06 656924 /usr/lib/mozilla/plugins/libgnome-shell-browser-plugin.so
7f467b40e000-7f467b60d000 ---p 00004000 08:06 656924 /usr/lib/mozilla/plugins/libgnome-shell-browser-plugin.so
7f467b60d000-7f467b60e000 r--p 00003000 08:06 656924 /usr/lib/mozilla/plugins/libgnome-shell-browser-plugin.so
7f467b60e000-7f467b60f000 rw-p 00004000 08:06 656924 /usr/lib/mozilla/plugins/libgnome-shell-browser-plugin.so
7f467b60f000-7f467b613000 r-xp 00000000 08:06 655251 /usr/lib/libtotem-plparser-mini.so.18.1.0
7f467b613000-7f467b813000 ---p 00004000 08:06 655251 /usr/lib/libtotem-plparser-mini.so.18.1.0
7f467b813000-7f467b814000 r--p 00004000 08:06 655251 /usr/lib/libtotem-plparser-mini.so.18.1.0
7f467b814000-7f467b815000 rw-p 00005000 08:06 655251 /usr/lib/libtotem-plparser-mini.so.18.1.0
7f467b815000-7f467b825000 r-xp 00000000 08:06 656885 /usr/lib/mozilla/plugins/libtotem-mully-plugin.so
7f467b825000-7f467ba25000 ---p 00010000 08:06 656885 /usr/lib/mozilla/plugins/libtotem-mully-plugin.so
7f467ba25000-7f467ba26000 r--p 00010000 08:06 656885 /usr/lib/mozilla/plugins/libtotem-mully-plugin.so
7f467ba26000-7f467ba27000 rw-p 00011000 08:06 656885 /usr/lib/mozilla/plugins/libtotem-mully-plugin.so
7f467ba27000-7f467ba76000 r-xp 00000000 08:06 652866 /usr/lib/x86_64-linux-gnu/libhunspell-1.3.so.0.0.0
7f467ba76000-7f467bc76000 ---p 0004f000 08:06 652866 /usr/lib/x86_64-linux-gnu/libhunspell-1.3.so.0.0.0
7f467bc76000-7f467bc77000 r--p 0004f000 08:06 652866 /usr/lib/x86_64-linux-gnu/libhunspell-1.3.so.0.0.0
7f467bc77000-7f467bc7b000 rw-p 00050000 08:06 652866 /usr/lib/x86_64-linux-gnu/libhunspell-1.3.so.0.0.0
7f467bc7b000-7f467bc80000 r-xp 00000000 08:06 922664 /usr/lib/x86_64-linux-gnu/enchant/libenchant_myspell.so
7f467bc80000-7f467be7f000 ---p 00005000 08:06 922664 /usr/lib/x86_64-linux-gnu/enchant/libenchant_myspell.so
7f467be7f000-7f467be80000 r--p 00004000 08:06 922664 /usr/lib/x86_64-linux-gnu/enchant/libenchant_myspell.so
7f467be80000-7f467be81000 rw-p 00005000 08:06 922664 /usr/lib/x86_64-linux-gnu/enchant/libenchant_myspell.so
7f467be81000-7f467be8c000 r-xp 00000000 08:06 926008 /usr/lib/x86_64-linux-gnu/enchant/libenchant_ispell.so
7f467be8c000-7f467c08c000 ---p 0000b000 08:06 926008 /usr/lib/x86_64-linux-gnu/enchant/libenchant_ispell.so
7f467c08c000-7f467c08d000 r--p 0000b000 08:06 926008 /usr/lib/x86_64-linux-gnu/enchant/libenchant_ispell.so
7f467c08d000-7f467c08e000 rw-p 0000c000 08:06 926008 /usr/lib/x86_64-linux-gnu/enchant/libenchant_ispell.so
7f467c08e000-7f467c143000 r-xp 00000000 08:06 660905 /usr/lib/libaspell.so.15.2.0
7f467c143000-7f467c342000 ---p 000b5000 08:06 660905 /usr/lib/libaspell.so.15.2.0
7f467c342000-7f467c348000 r--p 000b4000 08:06 660905 /usr/lib/libaspell.so.15.2.0
7f467c348000-7f467c349000 rw-p 000ba000 08:06 660905 /usr/lib/libaspell.so.15.2.0
7f467c349000-7f467c351000 rw-p 00000000 00:00 0
7f467c351000-7f467c353000 r-xp 00000000 08:06 926009 /usr/lib/x86_64-linux-gnu/enchant/libenchant_aspell.so
7f467c353000-7f467c552000 ---p 00002000 08:06 926009 /usr/lib/x86_64-linux-gnu/enchant/libenchant_aspell.so
7f467c552000-7f467c553000 r--p 00001000 08:06 926009 /usr/lib/x86_64-linux-gnu/enchant/libenchant_aspell.so
7f467c553000-7f467c554000 rw-p 00002000 08:06 926009 /usr/lib/x86_64-linux-gnu/enchant/libenchant_aspell.so
7f467c554000-7f467c55f000 r-xp 00000000 08:06 926010 /usr/lib/x86_64-linux-gnu/enchant/libenchant_hspell.so
7f467c55f000-7f467c75e000 ---p 0000b000 08:06 926010 /usr/lib/x86_64-linux-gnu/enchant/libenchant_hspell.so
7f467c75e000-7f467c75f000 r--p 0000a000 08:06 926010 /usr/lib/x86_64-linux-gnu/enchant/libenchant_hspell.so
7f467c75f000-7f467c762000 rw-p 0000b000 08:06 926010 /usr/lib/x86_64-linux-gnu/enchant/libenchant_hspell.so
7f467c762000-7f467c763000 ---p 00000000 00:00 0
7f467c763000-7f467c764000 rwxp 00000000 00:00 0
7f467c764000-7f46bc764000 ---p 00000000 00:00 0
7f46bc764000-7f46bc765000 ---p 00000000 00:00 0
7f46bc765000-7f46bc865000 rw-p 00000000 00:00 0
7f46bc865000-7f46bc866000 ---p 00000000 00:00 0
7f46bc866000-7f46bc86a000 r-xp 00000000 08:06 395632 /lib/x86_64-linux-gnu/libuuid.so.1.3.0
7f46bc86a000-7f46bca69000 ---p 00004000 08:06 395632 /lib/x86_64-linux-gnu/libuuid.so.1.3.0
7f46bca69000-7f46bca6a000 r--p 00003000 08:06 395632 /lib/x86_64-linux-gnu/libuuid.so.1.3.0
7f46bca6a000-7f46bca6b000 rw-p 00004000 08:06 395632 /lib/x86_64-linux-gnu/libuuid.so.1.3.0
7f46bca6b000-7f46bca6f000 r-xp 00000000 08:06 436067 /lib/x86_64-linux-gnu/libgpg-error.so.0.10.0
7f46bca6f000-7f46bcc6e000 ---p 00004000 08:06 436067 /lib/x86_64-linux-gnu/libgpg-error.so.0.10.0
7f46bcc6e000-7f46bcc6f000 r--p 00003000 08:06 436067 /lib/x86_64-linux-gnu/libgpg-error.so.0.10.0
7f46bcc6f000-7f46bcc70000 rw-p 00004000 08:06 436067 /lib/x86_64-linux-gnu/libgpg-error.so.0.10.0
7f46bcc70000-7f46bcc87000 r-xp 00000000 08:06 663101 /usr/lib/x86_64-linux-gnu/libICE.so.6.3.0
7f46bcc87000-7f46bce86000 ---p 00017000 08:06 663101 /usr/lib/x86_64-linux-gnu/libICE.so.6.3.0
7f46bce86000-7f46bce87000 r--p 00016000 08:06 663101 /usr/lib/x86_64-linux-gnu/libICE.so.6.3.0
7f46bce87000-7f46bce88000 rw-p 00017000 08:06 663101 /usr/lib/x86_64-linux-gnu/libICE.so.6.3.0
7f46bce88000-7f46bce8c000 rw-p 00000000 00:00 0
7f46bce8c000-7f46bce93000 r-xp 00000000 08:06 663218 /usr/lib/x86_64-linux-gnu/libSM.so.6.0.1
7f46bce93000-7f46bd092000 ---p 00007000 08:06 663218 /usr/lib/x86_64-linux-gnu/libSM.so.6.0.1
7f46bd092000-7f46bd093000 r--p 00006000 08:06 663218 /usr/lib/x86_64-linux-gnu/libSM.so.6.0.1
7f46bd093000-7f46bd094000 rw-p 00007000 08:06 663218 /usr/lib/x86_64-linux-gnu/libSM.so.6.0.1
7f46bd094000-7f46be700000 r-xp 00000000 08:06 660747 /usr/lib/x86_64-linux-gnu/libicudata.so.52.1
7f46be700000-7f46be8ff000 ---p 0166c000 08:06 660747 /usr/lib/x86_64-linux-gnu/libicudata.so.52.1
7f46be8ff000-7f46be900000 r--p 0166b000 08:06 660747 /usr/lib/x86_64-linux-gnu/libicudata.so.52.1
7f46be900000-7f46be901000 rw-p 0166c000 08:06 660747 /usr/lib/x86_64-linux-gnu/libicudata.so.52.1
7f46be901000-7f46be90c000 r-xp 00000000 08:06 677021 /usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0
7f46be90c000-7f46beb0b000 ---p 0000b000 08:06 677021 /usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0
7f46beb0b000-7f46beb0c000 r--p 0000a000 08:06 677021 /usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0
7f46beb0c000-7f46beb0d000 rw-p 0000b000 08:06 677021 /usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0
7f46beb0d000-7f46beb11000 r-xp 00000000 08:06 663271 /usr/lib/x86_64-linux-gnu/libXxf86vm.so.1.0.0
7f46beb11000-7f46bed11000 ---p 00004000 08:06 663271 /usr/lib/x86_64-linux-gnu/libXxf86vm.so.1.0.0
7f46bed11000-7f46bed12000 r--p 00004000 08:06 663271 /usr/lib/x86_64-linux-gnu/libXxf86vm.so.1.0.0
7f46bed12000-7f46bed13000 rw-p 00005000 08:06 663271 /usr/lib/x86_64-linux-gnu/libXxf86vm.so.1.0.0
7f46bed13000-7f46bed14000 r-xp 00000000 08:06 654165 /usr/lib/x86_64-linux-gnu/libxshmfence.so.1.0.0
7f46bed14000-7f46bef13000 ---p 00001000 08:06 654165 /usr/lib/x86_64-linux-gnu/libxshmfence.so.1.0.0
7f46bef13000-7f46bef14000 r--p 00000000 08:06 654165 /usr/lib/x86_64-linux-gnu/libxshmfence.so.1.0.0
7f46bef14000-7f46bef15000 rw-p 00001000 08:06 654165 /usr/lib/x86_64-linux-gnu/libxshmfence.so.1.0.0
7f46bef15000-7f46bef1a000 r-xp 00000000 08:06 677088 /usr/lib/x86_64-linux-gnu/libxcb-sync.so.1.0.0
7f46bef1a000-7f46bf119000 ---p 00005000 08:06 677088 /usr/lib/x86_64-linux-gnu/libxcb-sync.so.1.0.0
7f46bf119000-7f46bf11a000 r--p 00004000 08:06 677088 /usr/lib/x86_64-linux-gnu/libxcb-sync.so.1.0.0
7f46bf11a000-7f46bf11b000 rw-p 00005000 08:06 677088 /usr/lib/x86_64-linux-gnu/libxcb-sync.so.1.0.0
7f46bf11b000-7f46bf11d000 r-xp 00000000 08:06 677086 /usr/lib/x86_64-linux-gnu/libxcb-present.so.0.0.0
7f46bf11d000-7f46bf31c000 ---p 00002000 08:06 677086 /usr/lib/x86_64-linux-gnu/libxcb-present.so.0.0.0
7f46bf31c000-7f46bf31d000 r--p 00001000 08:06 677086 /usr/lib/x86_64-linux-gnu/libxcb-present.so.0.0.0
7f46bf31d000-7f46bf31e000 rw-p 00002000 08:06 677086 /usr/lib/x86_64-linux-gnu/libxcb-present.so.0.0.0
7f46bf31e000-7f46bf320000 r-xp 00000000 08:06 676856 /usr/lib/x86_64-linux-gnu/libxcb-dri3.so.0.0.0
7f46bf320000-7f46bf51f000 ---p 00002000 08:06 676856 /usr/lib/x86_64-linux-gnu/libxcb-dri3.so.0.0.0
7f46bf51f000-7f46bf520000 r--p 00001000 08:06 676856 /usr/lib/x86_64-linux-gnu/libxcb-dri3.so.0.0.0
7f46bf520000-7f46bf521000 rw-p 00002000 08:06 676856 /usr/lib/x86_64-linux-gnu/libxcb-dri3.so.0.0.0
7f46bf521000-7f46bf524000 r-xp 00000000 08:06 677031 /usr/lib/x86_64-linux-gnu/libxcb-dri2.so.0.0.0
7f46bf524000-7f46bf724000 ---p 00003000 08:06 677031 /usr/lib/x86_64-linux-gnu/libxcb-dri2.so.0.0.0
7f46bf724000-7f46bf725000 r--p 00003000 08:06 677031 /usr/lib/x86_64-linux-gnu/libxcb-dri2.so.0.0.0
7f46bf725000-7f46bf726000 rw-p 00004000 08:06 677031 /usr/lib/x86_64-linux-gnu/libxcb-dri2.so.0.0.0
7f46bf726000-7f46bf73b000 r-xp 00000000 08:06 654622 /usr/lib/x86_64-linux-gnu/libxcb-glx.so.0.0.0
7f46bf73b000-7f46bf93a000 ---p 00015000 08:06 654622 /usr/lib/x86_64-linux-gnu/libxcb-glx.so.0.0.0
7f46bf93a000-7f46bf93c000 r--p 00014000 08:06 654622 /usr/lib/x86_64-linux-gnu/libxcb-glx.so.0.0.0
7f46bf93c000-7f46bf93d000 rw-p 00016000 08:06 654622 /usr/lib/x86_64-linux-gnu/libxcb-glx.so.0.0.0
7f46bf93d000-7f46bf93e000 r-xp 00000000 08:06 662167 /usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0
7f46bf93e000-7f46bfb3d000 ---p 00001000 08:06 662167 /usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0
7f46bfb3d000-7f46bfb3e000 r--p 00000000 08:06 662167 /usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0
7f46bfb3e000-7f46bfb3f000 rw-p 00001000 08:06 662167 /usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0
7f46bfb3f000-7f46bfb61000 r-xp 00000000 08:06 661971 /usr/lib/x86_64-linux-gnu/libglapi.so.0.0.0
7f46bfb61000-7f46bfd61000 ---p 00022000 08:06 661971 /usr/lib/x86_64-linux-gnu/libglapi.so.0.0.0
7f46bfd61000-7f46bfd64000 r--p 00022000 08:06 661971 /usr/lib/x86_64-linux-gnu/libglapi.so.0.0.0
7f46bfd64000-7f46bfd65000 rw-p 00025000 08:06 661971 /usr/lib/x86_64-linux-gnu/libglapi.so.0.0.0
7f46bfd65000-7f46bfd66000 rw-p 00000000 00:00 0
7f46bfd66000-7f46bfde1000 r-xp 00000000 08:06 436146 /lib/x86_64-linux-gnu/libgcrypt.so.11.8.2
7f46bfde1000-7f46bffe1000 ---p 0007b000 08:06 436146 /lib/x86_64-linux-gnu/libgcrypt.so.11.8.2
7f46bffe1000-7f46bffe2000 r--p 0007b000 08:06 436146 /lib/x86_64-linux-gnu/libgcrypt.so.11.8.2
7f46bffe2000-7f46bffe5000 rw-p 0007c000 08:06 436146 /lib/x86_64-linux-gnu/libgcrypt.so.11.8.2
7f46bffe5000-7f46c0062000 r-xp 00000000 08:06 660597 /usr/lib/x86_64-linux-gnu/liborc-0.4.so.0.18.0
7f46c0062000-7f46c0261000 ---p 0007d000 08:06 660597 /usr/lib/x86_64-linux-gnu/liborc-0.4.so.0.18.0
7f46c0261000-7f46c0263000 r--p 0007c000 08:06 660597 /usr/lib/x86_64-linux-gnu/liborc-0.4.so.0.18.0
7f46c0263000-7f46c0267000 rw-p 0007e000 08:06 660597 /usr/lib/x86_64-linux-gnu/liborc-0.4.so.0.18.0
7f46c0267000-7f46c029d000 r-xp 00000000 08:06 660665 /usr/lib/x86_64-linux-gnu/libgsttag-1.0.so.0.204.0
7f46c029d000-7f46c049c000 ---p 00036000 08:06 660665 /usr/lib/x86_64-linux-gnu/libgsttag-1.0.so.0.204.0
7f46c049c000-7f46c049e000 r--p 00035000 08:06 660665 /usr/lib/x86_64-linux-gnu/libgsttag-1.0.so.0.204.0
7f46c049e000-7f46c049f000 rw-p 00037000 08:06 660665 /usr/lib/x86_64-linux-gnu/libgsttag-1.0.so.0.204.0
7f46c049f000-7f46c04c4000 r-xp 00000000 08:06 663418 /usr/lib/x86_64-linux-gnu/libdbus-glib-1.so.2.2.2
7f46c04c4000-7f46c06c4000 ---p 00025000 08:06 663418 /usr/lib/x86_64-linux-gnu/libdbus-glib-1.so.2.2.2
7f46c06c4000-7f46c06c5000 r--p 00025000 08:06 663418 /usr/lib/x86_64-linux-gnu/libdbus-glib-1.so.2.2.2
7f46c06c5000-7f46c06c6000 rw-p 00026000 08:06 663418 /usr/lib/x86_64-linux-gnu/libdbus-glib-1.so.2.2.2
7f46c06c6000-7f46c0725000 r-xp 00000000 08:06 663263 /usr/lib/x86_64-linux-gnu/libXt.so.6.0.0
7f46c0725000-7f46c0925000 ---p 0005f000 08:06 663263 /usr/lib/x86_64-linux-gnu/libXt.so.6.0.0
7f46c0925000-7f46c0926000 r--p 0005f000 08:06 663263 /usr/lib/x86_64-linux-gnu/libXt.so.6.0.0
7f46c0926000-7f46c092b000 rw-p 00060000 08:06 663263 /usr/lib/x86_64-linux-gnu/libXt.so.6.0.0
7f46c092b000-7f46c092c000 rw-p 00000000 00:00 0
7f46c092c000-7f46c097d000 r-xp 00000000 08:06 655685 /usr/lib/x86_64-linux-gnu/libwebp.so.5.0.0
7f46c097d000-7f46c0b7d000 ---p 00051000 08:06 655685 /usr/lib/x86_64-linux-gnu/libwebp.so.5.0.0
7f46c0b7d000-7f46c0b7e000 r--p 00051000 08:06 655685 /usr/lib/x86_64-linux-gnu/libwebp.so.5.0.0
7f46c0b7e000-7f46c0b7f000 rw-p 00052000 08:06 655685 /usr/lib/x86_64-linux-gnu/libwebp.so.5.0.0
7f46c0b7f000-7f46c0b84000 rw-p 00000000 00:00 0
7f46c0b84000-7f46c0ce8000 r-xp 00000000 08:06 660750 /usr/lib/x86_64-linux-gnu/libicuuc.so.52.1
7f46c0ce8000-7f46c0ee7000 ---p 00164000 08:06 660750 /usr/lib/x86_64-linux-gnu/libicuuc.so.52.1
7f46c0ee7000-7f46c0ef8000 r--p 00163000 08:06 660750 /usr/lib/x86_64-linux-gnu/libicuuc.so.52.1
7f46c0ef8000-7f46c0ef9000 rw-p 00174000 08:06 660750 /usr/lib/x86_64-linux-gnu/libicuuc.so.52.1
7f46c0ef9000-7f46c0efd000 rw-p 00000000 00:00 0
7f46c0efd000-7f46c10f6000 r-xp 00000000 08:06 658238 /usr/lib/x86_64-linux-gnu/libicui18n.so.52.1
7f46c10f6000-7f46c12f6000 ---p 001f9000 08:06 658238 /usr/lib/x86_64-linux-gnu/libicui18n.so.52.1
7f46c12f6000-7f46c1303000 r--p 001f9000 08:06 658238 /usr/lib/x86_64-linux-gnu/libicui18n.so.52.1
7f46c1303000-7f46c1304000 rw-p 00206000 08:06 658238 /usr/lib/x86_64-linux-gnu/libicui18n.so.52.1
7f46c1304000-7f46c1305000 rw-p 00000000 00:00 0
7f46c1305000-7f46c13b9000 r-xp 00000000 08:06 653178 /usr/lib/x86_64-linux-gnu/libsqlite3.so.0.8.6
7f46c13b9000-7f46c15b9000 ---p 000b4000 08:06 653178 /usr/lib/x86_64-linux-gnu/libsqlite3.so.0.8.6
7f46c15b9000-7f46c15bb000 r--p 000b4000 08:06 653178 /usr/lib/x86_64-linux-gnu/libsqlite3.so.0.8.6
7f46c15bb000-7f46c15bd000 rw-p 000b6000 08:06 653178 /usr/lib/x86_64-linux-gnu/libsqlite3.so.0.8.6
7f46c15bd000-7f46c15be000 rw-p 00000000 00:00 0
7f46c15be000-7f46c1620000 r-xp 00000000 08:06 915813 /usr/lib/x86_64-linux-gnu/mesa/libGL.so.1.2.0
7f46c1620000-7f46c181f000 ---p 00062000 08:06 915813 /usr/lib/x86_64-linux-gnu/mesa/libGL.so.1.2.0
7f46c181f000-7f46c1822000 r--p 00061000 08:06 915813 /usr/lib/x86_64-linux-gnu/mesa/libGL.so.1.2.0
7f46c1822000-7f46c1823000 rw-p 00064000 08:06 915813 /usr/lib/x86_64-linux-gnu/mesa/libGL.so.1.2.0
7f46c1823000-7f46c1824000 rw-p 00000000 00:00 0
7f46c1824000-7f46c185f000 r-xp 00000000 08:06 653005 /usr/lib/x86_64-linux-gnu/libxslt.so.1.1.28
7f46c185f000-7f46c1a5f000 ---p 0003b000 08:06 653005 /usr/lib/x86_64-linux-gnu/libxslt.so.1.1.28
7f46c1a5f000-7f46c1a60000 r--p 0003b000 08:06 653005 /usr/lib/x86_64-linux-gnu/libxslt.so.1.1.28
7f46c1a60000-7f46c1a61000 rw-p 0003c000 08:06 653005 /usr/lib/x86_64-linux-gnu/libxslt.so.1.1.28
7f46c1a61000-7f46c1b05000 r-xp 00000000 08:06 657269 /usr/lib/x86_64-linux-gnu/libsoup-2.4.so.1.7.0
7f46c1b05000-7f46c1d05000 ---p 000a4000 08:06 657269 /usr/lib/x86_64-linux-gnu/libsoup-2.4.so.1.7.0
7f46c1d05000-7f46c1d07000 r--p 000a4000 08:06 657269 /usr/lib/x86_64-linux-gnu/libsoup-2.4.so.1.7.0
7f46c1d07000-7f46c1d20000 rw-p 000a6000 08:06 657269 /usr/lib/x86_64-linux-gnu/libsoup-2.4.so.1.7.0
7f46c1d20000-7f46c1d21000 rw-p 00000000 00:00 0
7f46c1d21000-7f46c1d6c000 r-xp 00000000 08:06 653909 /usr/lib/x86_64-linux-gnu/libsecret-1.so.0.0.0
7f46c1d6c000-7f46c1f6b000 ---p 0004b000 08:06 653909 /usr/lib/x86_64-linux-gnu/libsecret-1.so.0.0.0
7f46c1f6b000-7f46c1f6e000 r--p 0004a000 08:06 653909 /usr/lib/x86_64-linux-gnu/libsecret-1.so.0.0.0
7f46c1f6e000-7f46c1f6f000 rw-p 0004d000 08:06 653909 /usr/lib/x86_64-linux-gnu/libsecret-1.so.0.0.0
7f46c1f6f000-7f46c1fb2000 r-xp 00000000 08:06 664925 /usr/lib/x86_64-linux-gnu/libjpeg.so.8.0.2
7f46c1fb2000-7f46c21b2000 ---p 00043000 08:06 664925 /usr/lib/x86_64-linux-gnu/libjpeg.so.8.0.2
7f46c21b2000-7f46c21b3000 r--p 00043000 08:06 664925 /usr/lib/x86_64-linux-gnu/libjpeg.so.8.0.2
7f46c21b3000-7f46c21b4000 rw-p 00044000 08:06 664925 /usr/lib/x86_64-linux-gnu/libjpeg.so.8.0.2
7f46c21b4000-7f46c21c4000 rw-p 00000000 00:00 0
7f46c21c4000-7f46c22bf000 r-xp 00000000 08:06 660537 /usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0.204.0
7f46c22bf000-7f46c24bf000 ---p 000fb000 08:06 660537 /usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0.204.0
7f46c24bf000-7f46c24c4000 r--p 000fb000 08:06 660537 /usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0.204.0
7f46c24c4000-7f46c24c6000 rw-p 00100000 08:06 660537 /usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0.204.0
7f46c24c6000-7f46c24c8000 rw-p 00000000 00:00 0
7f46c24c8000-7f46c251e000 r-xp 00000000 08:06 660538 /usr/lib/x86_64-linux-gnu/libgstbase-1.0.so.0.204.0
7f46c251e000-7f46c271e000 ---p 00056000 08:06 660538 /usr/lib/x86_64-linux-gnu/libgstbase-1.0.so.0.204.0
7f46c271e000-7f46c271f000 r--p 00056000 08:06 660538 /usr/lib/x86_64-linux-gnu/libgstbase-1.0.so.0.204.0
7f46c271f000-7f46c2720000 rw-p 00057000 08:06 660538 /usr/lib/x86_64-linux-gnu/libgstbase-1.0.so.0.204.0
7f46c2720000-7f46c2761000 r-xp 00000000 08:06 660657 /usr/lib/x86_64-linux-gnu/libgstvideo-1.0.so.0.204.0
7f46c2761000-7f46c2960000 ---p 00041000 08:06 660657 /usr/lib/x86_64-linux-gnu/libgstvideo-1.0.so.0.204.0
7f46c2960000-7f46c2962000 r--p 00040000 08:06 660657 /usr/lib/x86_64-linux-gnu/libgstvideo-1.0.so.0.204.0
7f46c2962000-7f46c2966000 rw-p 00042000 08:06 660657 /usr/lib/x86_64-linux-gnu/libgstvideo-1.0.so.0.204.0
7f46c2966000-7f46c2989000 r-xp 00000000 08:06 660579 /usr/lib/x86_64-linux-gnu/libgstpbutils-1.0.so.0.204.0
7f46c2989000-7f46c2b89000 ---p 00023000 08:06 660579 /usr/lib/x86_64-linux-gnu/libgstpbutils-1.0.so.0.204.0
7f46c2b89000-7f46c2b8b000 r--p 00023000 08:06 660579 /usr/lib/x86_64-linux-gnu/libgstpbutils-1.0.so.0.204.0
7f46c2b8b000-7f46c2b8c000 rw-p 00025000 08:06 660579 /usr/lib/x86_64-linux-gnu/libgstpbutils-1.0.so.0.204.0
7f46c2b8c000-7f46c2b95000 r-xp 00000000 08:06 660633 /usr/lib/x86_64-linux-gnu/libgstfft-1.0.so.0.204.0
7f46c2b95000-7f46c2d94000 ---p 00009000 08:06 660633 /usr/lib/x86_64-linux-gnu/libgstfft-1.0.so.0.204.0
7f46c2d94000-7f46c2d95000 r--p 00008000 08:06 660633 /usr/lib/x86_64-linux-gnu/libgstfft-1.0.so.0.204.0
7f46c2d95000-7f46c2d96000 rw-p 00009000 08:06 660633 /usr/lib/x86_64-linux-gnu/libgstfft-1.0.so.0.204.0
7f46c2d96000-7f46c2ddd000 r-xp 00000000 08:06 660629 /usr/lib/x86_64-linux-gnu/libgstaudio-1.0.so.0.204.0
7f46c2ddd000-7f46c2fdc000 ---p 00047000 08:06 660629 /usr/lib/x86_64-linux-gnu/libgstaudio-1.0.so.0.204.0
7f46c2fdc000-7f46c2fde000 r--p 00046000 08:06 660629 /usr/lib/x86_64-linux-gnu/libgstaudio-1.0.so.0.204.0
7f46c2fde000-7f46c2fe0000 rw-p 00048000 08:06 660629 /usr/lib/x86_64-linux-gnu/libgstaudio-1.0.so.0.204.0
7f46c2fe0000-7f46c2feb000 r-xp 00000000 08:06 660581 /usr/lib/x86_64-linux-gnu/libgstapp-1.0.so.0.204.0
7f46c2feb000-7f46c31eb000 ---p 0000b000 08:06 660581 /usr/lib/x86_64-linux-gnu/libgstapp-1.0.so.0.204.0
7f46c31eb000-7f46c31ec000 r--p 0000b000 08:06 660581 /usr/lib/x86_64-linux-gnu/libgstapp-1.0.so.0.204.0
7f46c31ec000-7f46c31ed000 rw-p 0000c000 08:06 660581 /usr/lib/x86_64-linux-gnu/libgstapp-1.0.so.0.204.0
7f46c31ed000-7f46c3201000 r-xp 00000000 08:06 656122 /usr/lib/x86_64-linux-gnu/libgeoclue.so.0.0.0
7f46c3201000-7f46c3400000 ---p 00014000 08:06 656122 /usr/lib/x86_64-linux-gnu/libgeoclue.so.0.0.0
7f46c3400000-7f46c3401000 r--p 00013000 08:06 656122 /usr/lib/x86_64-linux-gnu/libgeoclue.so.0.0.0
7f46c3401000-7f46c3403000 rw-p 00014000 08:06 656122 /usr/lib/x86_64-linux-gnu/libgeoclue.so.0.0.0
7f46c3403000-7f46c3405000 r-xp 00000000 08:06 658277 /usr/lib/x86_64-linux-gnu/libharfbuzz-icu.so.0.927.0
7f46c3405000-7f46c3604000 ---p 00002000 08:06 658277 /usr/lib/x86_64-linux-gnu/libharfbuzz-icu.so.0.927.0
7f46c3604000-7f46c3605000 r--p 00001000 08:06 658277 /usr/lib/x86_64-linux-gnu/libharfbuzz-icu.so.0.927.0
7f46c3605000-7f46c3606000 rw-p 00002000 08:06 658277 /usr/lib/x86_64-linux-gnu/libharfbuzz-icu.so.0.927.0
7f46c3606000-7f46c3610000 r-xp 00000000 08:06 653722 /usr/lib/x86_64-linux-gnu/libenchant.so.1.6.0
7f46c3610000-7f46c3810000 ---p 0000a000 08:06 653722 /usr/lib/x86_64-linux-gnu/libenchant.so.1.6.0
7f46c3810000-7f46c3811000 r--p 0000a000 08:06 653722 /usr/lib/x86_64-linux-gnu/libenchant.so.1.6.0
7f46c3811000-7f46c3812000 rw-p 0000b000 08:06 653722 /usr/lib/x86_64-linux-gnu/libenchant.so.1.6.0
7f46c3812000-7f46c3e8e000 r-xp 00000000 08:06 661669 /usr/lib/x86_64-linux-gnu/libjavascriptcoregtk-1.0.so.0.16.10
7f46c3e8e000-7f46c408e000 ---p 0067c000 08:06 661669 /usr/lib/x86_64-linux-gnu/libjavascriptcoregtk-1.0.so.0.16.10
7f46c408e000-7f46c40a3000 r--p 0067c000 08:06 661669 /usr/lib/x86_64-linux-gnu/libjavascriptcoregtk-1.0.so.0.16.10
7f46c40a3000-7f46c40a4000 rw-p 00691000 08:06 661669 /usr/lib/x86_64-linux-gnu/libjavascriptcoregtk-1.0.so.0.16.10
7f46c40a4000-7f46c40ca000 rw-p 00000000 00:00 0
7f46c40ca000-7f46c5ecf000 r-xp 00000000 08:06 661763 /usr/lib/x86_64-linux-gnu/libwebkitgtk-1.0.so.0.22.8
7f46c5ecf000-7f46c60ce000 ---p 01e05000 08:06 661763 /usr/lib/x86_64-linux-gnu/libwebkitgtk-1.0.so.0.22.8
7f46c60ce000-7f46c624f000 r--p 01e04000 08:06 661763 /usr/lib/x86_64-linux-gnu/libwebkitgtk-1.0.so.0.22.8
7f46c624f000-7f46c6266000 rw-p 01f85000 08:06 661763 /usr/lib/x86_64-linux-gnu/libwebkitgtk-1.0.so.0.22.8
7f46c6266000-7f46c626f000 rw-p 00000000 00:00 0
7f46c626f000-7f46c627b000 r-xp 00000000 08:06 799595 /usr/lib/jni/libswt-webkit-gtk-3836.so
7f46c627b000-7f46c647a000 ---p 0000c000 08:06 799595 /usr/lib/jni/libswt-webkit-gtk-3836.so
7f46c647a000-7f46c647b000 r--p 0000b000 08:06 799595 /usr/lib/jni/libswt-webkit-gtk-3836.so
7f46c647b000-7f46c647c000 rw-p 0000c000 08:06 799595 /usr/lib/jni/libswt-webkit-gtk-3836.so
7f46c647c000-7f46c649d000 r-xp 00000000 08:06 398426 /lib/x86_64-linux-gnu/liblzma.so.5.0.0
7f46c649d000-7f46c669c000 ---p 00021000 08:06 398426 /lib/x86_64-linux-gnu/liblzma.so.5.0.0
7f46c669c000-7f46c669d000 r--p 00020000 08:06 398426 /lib/x86_64-linux-gnu/liblzma.so.5.0.0
7f46c669d000-7f46c669e000 rw-p 00021000 08:06 398426 /lib/x86_64-linux-gnu/liblzma.so.5.0.0
7f46c669e000-7f46c67fa000 r-xp 00000000 08:06 654937 /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.1
7f46c67fa000-7f46c69f9000 ---p 0015c000 08:06 654937 /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.1
7f46c69f9000-7f46c6a01000 r--p 0015b000 08:06 654937 /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.1
7f46c6a01000-7f46c6a03000 rw-p 00163000 08:06 654937 /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.1
7f46c6a03000-7f46c6a04000 rw-p 00000000 00:00 0
7f46c6a04000-7f46c6a3c000 r-xp 00000000 08:06 662340 /usr/lib/x86_64-linux-gnu/libcroco-0.6.so.3.0.1
7f46c6a3c000-7f46c6c3b000 ---p 00038000 08:06 662340 /usr/lib/x86_64-linux-gnu/libcroco-0.6.so.3.0.1
7f46c6c3b000-7f46c6c3e000 r--p 00037000 08:06 662340 /usr/lib/x86_64-linux-gnu/libcroco-0.6.so.3.0.1
7f46c6c3e000-7f46c6c3f000 rw-p 0003a000 08:06 662340 /usr/lib/x86_64-linux-gnu/libcroco-0.6.so.3.0.1
7f46c6c3f000-7f46c6c73000 r-xp 00000000 08:06 662342 /usr/lib/x86_64-linux-gnu/librsvg-2.so.2.40.2
7f46c6c73000-7f46c6e72000 ---p 00034000 08:06 662342 /usr/lib/x86_64-linux-gnu/librsvg-2.so.2.40.2
7f46c6e72000-7f46c6e73000 r--p 00033000 08:06 662342 /usr/lib/x86_64-linux-gnu/librsvg-2.so.2.40.2
7f46c6e73000-7f46c6e74000 rw-p 00034000 08:06 662342 /usr/lib/x86_64-linux-gnu/librsvg-2.so.2.40.2
7f46c6e74000-7f46c6e76000 r-xp 00000000 08:06 916975 /usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-svg.so
7f46c6e76000-7f46c7075000 ---p 00002000 08:06 916975 /usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-svg.so
7f46c7075000-7f46c7076000 r--p 00001000 08:06 916975 /usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-svg.so
7f46c7076000-7f46c7077000 rw-p 00002000 08:06 916975 /usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-svg.so
7f46c7077000-7f46c9d78000 r--p 00000000 08:06 1048020 /usr/share/icons/hicolor/icon-theme.cache
7f46c9d78000-7f46cef7f000 r--p 00000000 08:06 1048591 /usr/share/icons/gnome/icon-theme.cache
7f46cef7f000-7f46cf068000 r--p 00000000 08:06 926531 /usr/share/icons/Humanity/icon-theme.cache
7f46cf068000-7f46cf071000 r--s 00086000 08:06 797479 /usr/share/eclipse/plugins/org.eclipse.update.core_3.2.600.dist.jar
7f46cf071000-7f46cf073000 r--s 00005000 08:06 797441 /usr/share/eclipse/plugins/org.eclipse.update.scheduler_3.2.400.dist.jar
7f46cf073000-7f46cf074000 r--s 00002000 08:06 797465 /usr/share/eclipse/plugins/org.eclipse.equinox.p2.updatechecker_1.1.200.dist.jar
7f46cf074000-7f46cf077000 r--s 00017000 08:06 797353 /usr/share/eclipse/plugins/org.eclipse.equinox.p2.metadata.repository_1.2.100.dist.jar
7f46cf077000-7f46cf07b000 r--s 0001b000 08:06 797476 /usr/share/eclipse/plugins/org.eclipse.equinox.p2.repository_2.2.0.dist.jar
7f46cf07b000-7f46cf082000 r--s 00049000 08:06 797499 /usr/share/eclipse/plugins/org.eclipse.equinox.p2.metadata_2.1.0.dist.jar
7f46cf082000-7f46cf085000 ---p 00000000 00:00 0
7f46cf085000-7f46cf183000 rw-p 00000000 00:00 0 [stack:28623]
7f46cf183000-7f46cf186000 ---p 00000000 00:00 0
7f46cf186000-7f46cf284000 rw-p 00000000 00:00 0
7f46cf284000-7f46cf288000 r--s 0002b000 08:06 797457 /usr/share/eclipse/plugins/org.eclipse.equinox.p2.engine_2.2.0.dist.jar
7f46cf288000-7f46cf28a000 r--s 0000b000 08:06 797357 /usr/share/eclipse/plugins/org.eclipse.equinox.p2.operations_2.2.0.dist.jar
7f46cf28a000-7f46cf28d000 r--s 0000b000 08:06 797440 /usr/share/eclipse/plugins/org.eclipse.equinox.p2.ui.sdk.scheduler_1.1.0.dist.jar
7f46cf28d000-7f46cf28f000 r--s 00009000 08:06 797473 /usr/share/eclipse/plugins/org.eclipse.ui.net_1.2.101.dist.jar
7f46cf28f000-7f46cf292000 r--s 00017000 08:06 787826 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/jce.jar
7f46cf292000-7f46cf295000 r--s 00016000 08:06 797464 /usr/share/eclipse/plugins/org.eclipse.equinox.security_1.1.100.dist.jar
7f46cf295000-7f46cf297000 r--s 0000e000 08:06 797483 /usr/share/eclipse/plugins/org.eclipse.core.net_1.2.200.dist.jar
7f46cf297000-7f46cf2f7000 rw-s 00000000 00:04 8159253 /SYSV00000000 (deleted)
7f46cf2f7000-7f46cf2fa000 r--s 00012000 08:06 797287 /usr/share/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.600.dist/universal.jar
7f46cf2fa000-7f46cf2fe000 r--s 0001c000 08:06 797511 /usr/share/eclipse/plugins/org.eclipse.ui.externaltools_3.2.100.dist.jar
7f46cf2fe000-7f46cf3a8000 r--p 00000000 08:06 1175450 /usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf
7f46cf3a8000-7f46cf3e3000 r--p 00000000 08:06 1190760 /usr/share/fonts/truetype/dejavu/DejaVuSansMono-BoldOblique.ttf
7f46cf3e3000-7f46cf420000 r--p 00000000 08:06 1190778 /usr/share/fonts/truetype/dejavu/DejaVuSansMono-Oblique.ttf
7f46cf420000-7f46cf820000 rw-s 00000000 00:04 8126487 /SYSV00000000 (deleted)
7f46cf820000-7f46cf827000 r--s 00046000 08:06 797482 /usr/share/eclipse/plugins/org.eclipse.ltk.core.refactoring_3.6.0.dist.jar
7f46cf827000-7f46cf87f000 r--p 00000000 08:06 1178858 /usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-BI.ttf
7f46cf87f000-7f46cf8de000 r--p 00000000 08:06 1178865 /usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-RI.ttf
7f46cf8de000-7f46cf930000 r--p 00000000 08:06 1178857 /usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-B.ttf
7f46cf930000-7f46cf933000 r--s 00012000 08:06 797469 /usr/share/eclipse/plugins/org.eclipse.ui.views_3.6.100.dist.jar
7f46cf933000-7f46cf93c000 r--s 0005c000 08:06 801785 /usr/lib/eclipse/dropins/sdk/plugins/org.eclipse.pde.api.tools.ui_1.0.400.dist.jar
7f46cf93c000-7f46cf93f000 r--s 00017000 08:06 797436 /usr/share/eclipse/plugins/org.eclipse.core.filebuffers_3.5.200.dist.jar
7f46cf93f000-7f46cf942000 r--s 00011000 08:06 800615 /usr/share/eclipse/dropins/jdt/plugins/org.eclipse.jdt.core.manipulation_1.5.0.dist.jar
7f46cf942000-7f46cf956000 r--s 000d8000 08:06 797495 /usr/share/eclipse/plugins/org.eclipse.jface.text_3.8.1.dist.jar
7f46cf956000-7f46cf961000 r--s 0007d000 08:06 797361 /usr/share/eclipse/plugins/org.eclipse.ui.editors_3.8.0.dist.jar
7f46cf961000-7f46cf96c000 r--s 00080000 08:06 797451 /usr/share/eclipse/plugins/org.eclipse.ui.workbench.texteditor_3.8.0.dist.jar
7f46cf96c000-7f46cfa02000 r--s 0091c000 08:06 800617 /usr/share/eclipse/dropins/jdt/plugins/org.eclipse.jdt.ui_3.8.1.dist.jar
7f46cfa02000-7f46cfa4d000 r--s 003b7000 08:06 801808 /usr/lib/eclipse/dropins/sdk/plugins/org.eclipse.pde.ui_3.7.1.dist.jar
7f46cfa4d000-7f46cfa56000 r--s 0005b000 08:06 800610 /usr/share/eclipse/dropins/jdt/plugins/org.eclipse.jdt.junit_3.7.100.dist.jar
7f46cfa56000-7f46cfa57000 ---p 00000000 00:00 0
7f46cfa57000-7f46cfa5f000 rw-p 00000000 00:00 0
7f46cfa5f000-7f46cfa60000 ---p 00000000 00:00 0
7f46cfa60000-7f46cfa70000 rw-p 00000000 00:00 0
7f46cfa70000-7f46cfa80000 ---p 00000000 00:00 0
7f46cfa80000-7f46cfa90000 rw-p 00000000 00:00 0
7f46cfa90000-7f46cfaa0000 ---p 00000000 00:00 0
7f46cfaa0000-7f46cfab0000 rw-p 00000000 00:00 0
7f46cfab0000-7f46cfac0000 ---p 00000000 00:00 0
7f46cfac0000-7f46cfad0000 rw-p 00000000 00:00 0
7f46cfad0000-7f46cfae0000 ---p 00000000 00:00 0
7f46cfae0000-7f46cfaf0000 rw-p 00000000 00:00 0
7f46cfaf0000-7f46cfafe000 ---p 00000000 00:00 0
7f46cfafe000-7f46cfbfc000 rw-p 00000000 00:00 0
7f46cfbfc000-7f46cfbff000 ---p 00000000 00:00 0
7f46cfbff000-7f46cfcfd000 rw-p 00000000 00:00 0 [stack:26044]
7f46cfcfd000-7f46cfd00000 ---p 00000000 00:00 0
7f46cfd00000-7f46cfdfe000 rw-p 00000000 00:00 0 [stack:25983]
7f46cfdfe000-7f46cfe01000 ---p 00000000 00:00 0
7f46cfe01000-7f46cfeff000 rw-p 00000000 00:00 0
7f46cfeff000-7f46cff02000 ---p 00000000 00:00 0
7f46cff02000-7f46d0000000 rw-p 00000000 00:00 0 [stack:28722]
7f46d0000000-7f46d0021000 rw-p 00000000 00:00 0
7f46d0021000-7f46d4000000 ---p 00000000 00:00 0
7f46d4000000-7f46d4009000 r--s 00066000 08:06 797352 /usr/share/eclipse/plugins/org.eclipse.search_3.8.0.dist.jar
7f46d400d000-7f46d400e000 rw-p 00000000 00:00 0
7f46d400e000-7f46d400f000 ---p 00000000 00:00 0
7f46d400f000-7f46d4017000 rw-p 00000000 00:00 0
7f46d4017000-7f46d4019000 ---p 00000000 00:00 0
7f46d4019000-7f46d4021000 rw-p 00000000 00:00 0
7f46d4021000-7f46d4023000 ---p 00000000 00:00 0
7f46d4023000-7f46d402b000 rw-p 00000000 00:00 0
7f46d402b000-7f46d402c000 ---p 00000000 00:00 0
7f46d402c000-7f46d402d000 r--s 00000000 08:06 800225 /usr/lib/eclipse/plugins/org.eclipse.core.net.linux.x86_64_1.1.0.dist.jar
7f46d402d000-7f46d4030000 r--s 0001d000 08:06 801783 /usr/lib/eclipse/dropins/sdk/plugins/org.eclipse.ui.views.log_1.0.300.dist.jar
7f46d4030000-7f46d4032000 r--s 00019000 08:06 802796 /usr/lib/eclipse/dropins/sdk/plugins/org.eclipse.pde.launching_3.6.100.dist.jar
7f46d4032000-7f46d4036000 r--s 00022000 08:06 797467 /usr/share/eclipse/plugins/org.eclipse.ui.console_3.5.100.dist.jar
7f46d4036000-7f46d403a000 r--s 00018000 08:06 797360 /usr/share/eclipse/plugins/org.eclipse.ui.navigator.resources_3.4.400.dist.jar
7f46d403a000-7f46d4044000 r--s 00062000 08:06 797507 /usr/share/eclipse/plugins/org.eclipse.ltk.ui.refactoring_3.7.0.dist.jar
7f46d4044000-7f46d4092000 r--p 00000000 08:06 1175453 /usr/share/fonts/truetype/dejavu/DejaVuSansMono-Bold.ttf
7f46d4092000-7f46d40ac000 r--s 00128000 08:06 800608 /usr/share/eclipse/dropins/jdt/plugins/org.eclipse.jdt.debug.ui_3.6.100.dist.jar
7f46d40ac000-7f46d40af000 ---p 00000000 00:00 0
7f46d40af000-7f46d41ad000 rw-p 00000000 00:00 0 [stack:27250]
7f46d41ad000-7f46d41b0000 ---p 00000000 00:00 0
7f46d41b0000-7f46d42ae000 rw-p 00000000 00:00 0 [stack:27616]
7f46d42ae000-7f46d42b0000 r--s 0000c000 08:06 797435 /usr/share/eclipse/plugins/org.eclipse.compare.core_3.5.200.dist.jar
7f46d42b0000-7f46d42b1000 rw-p 00000000 00:00 0
7f46d42b1000-7f46d42b5000 r--s 0000a000 08:06 800600 /usr/share/eclipse/dropins/jdt/plugins/org.eclipse.jdt.debug_3.7.101.dist/jdi.jar
7f46d42b5000-7f46d42b6000 r--s 00004000 08:06 797363 /usr/share/eclipse/plugins/org.eclipse.equinox.p2.garbagecollector_1.0.200.dist.jar
7f46d42b6000-7f46d42b7000 ---p 00000000 00:00 0
7f46d42b7000-7f46d42bf000 rw-p 00000000 00:00 0
7f46d42bf000-7f46d42c1000 ---p 00000000 00:00 0
7f46d42c1000-7f46d42c9000 rw-p 00000000 00:00 0
7f46d42c9000-7f46d42ca000 ---p 00000000 00:00 0
7f46d42ca000-7f46d42cc000 r--s 00015000 08:06 797306 /usr/share/eclipse/plugins/org.eclipse.ant.core_3.2.400.dist.jar
7f46d42cc000-7f46d42d7000 r--p 00000000 08:06 930094 /usr/share/icons/Humanity-Dark/icon-theme.cache
7f46d42d7000-7f46d42e9000 r--p 00000000 08:06 1046501 /usr/share/icons/ubuntu-mono-dark/icon-theme.cache
7f46d42e9000-7f46d42fd000 r--p 00000000 08:06 927281 /usr/share/locale-langpack/fr/LC_MESSAGES/gedit.mo
7f46d42fd000-7f46d4305000 r--s 00000000 08:06 394178 /home/alex/.local/share/gvfs-metadata/root-d7088fb3.log
7f46d4305000-7f46d4308000 r--s 00000000 08:06 393978 /home/alex/.local/share/gvfs-metadata/root
7f46d4308000-7f46d4318000 r--s 000d7000 08:06 800548 /usr/share/eclipse/dropins/jdt/plugins/org.eclipse.ant.ui_3.5.300.dist.jar
7f46d4318000-7f46d431a000 r--s 00005000 08:06 800623 /usr/share/eclipse/dropins/jdt/plugins/org.eclipse.jdt.apt.pluggable.core_1.0.400.dist.jar
7f46d431a000-7f46d4321000 r--s 0004f000 08:06 800626 /usr/share/eclipse/dropins/jdt/plugins/org.eclipse.jdt.apt.core_3.3.500.dist.jar
7f46d4321000-7f46d4326000 r--s 00038000 08:06 799723 /usr/lib/eclipse/plugins/org.eclipse.help_3.6.0.dist.jar
7f46d4326000-7f46d432e000 r--s 0004a000 08:06 790234 /usr/share/eclipse/plugins/org.eclipse.debug.core_3.7.100.dist.jar
7f46d432e000-7f46d4339000 r-xp 00000000 08:06 799586 /usr/lib/jni/libswt-atk-gtk-3836.so
7f46d4339000-7f46d4538000 ---p 0000b000 08:06 799586 /usr/lib/jni/libswt-atk-gtk-3836.so
7f46d4538000-7f46d4539000 r--p 0000a000 08:06 799586 /usr/lib/jni/libswt-atk-gtk-3836.so
7f46d4539000-7f46d453a000 rw-p 0000b000 08:06 799586 /usr/lib/jni/libswt-atk-gtk-3836.so
7f46d453a000-7f46d453b000 ---p 00000000 00:00 0
7f46d453b000-7f46d4d3b000 rw-p 00000000 00:00 0 [stack:25990]
7f46d4d3b000-7f46d4d3c000 ---p 00000000 00:00 0
7f46d4d3c000-7f46d553c000 rw-p 00000000 00:00 0 [stack:25991]
7f46d553c000-7f46d553d000 ---p 00000000 00:00 0
7f46d553d000-7f46d5d3d000 rw-p 00000000 00:00 0 [stack:25957]
7f46d5d3d000-7f46d5d81000 r-xp 00000000 08:06 436097 /lib/x86_64-linux-gnu/libdbus-1.so.3.7.6
7f46d5d81000-7f46d5f80000 ---p 00044000 08:06 436097 /lib/x86_64-linux-gnu/libdbus-1.so.3.7.6
7f46d5f80000-7f46d5f81000 r--p 00043000 08:06 436097 /lib/x86_64-linux-gnu/libdbus-1.so.3.7.6
7f46d5f81000-7f46d5f82000 rw-p 00044000 08:06 436097 /lib/x86_64-linux-gnu/libdbus-1.so.3.7.6
7f46d5f82000-7f46d5f8a000 r-xp 00000000 08:06 399382 /lib/x86_64-linux-gnu/libnih-dbus.so.1.0.0
7f46d5f8a000-7f46d618a000 ---p 00008000 08:06 399382 /lib/x86_64-linux-gnu/libnih-dbus.so.1.0.0
7f46d618a000-7f46d618b000 r--p 00008000 08:06 399382 /lib/x86_64-linux-gnu/libnih-dbus.so.1.0.0
7f46d618b000-7f46d618c000 rw-p 00009000 08:06 399382 /lib/x86_64-linux-gnu/libnih-dbus.so.1.0.0
7f46d618c000-7f46d61a3000 r-xp 00000000 08:06 399546 /lib/x86_64-linux-gnu/libnih.so.1.0.0
7f46d61a3000-7f46d63a2000 ---p 00017000 08:06 399546 /lib/x86_64-linux-gnu/libnih.so.1.0.0
7f46d63a2000-7f46d63a3000 r--p 00016000 08:06 399546 /lib/x86_64-linux-gnu/libnih.so.1.0.0
7f46d63a3000-7f46d63a4000 rw-p 00017000 08:06 399546 /lib/x86_64-linux-gnu/libnih.so.1.0.0
7f46d63a4000-7f46d63bd000 r-xp 00000000 08:06 397171 /lib/x86_64-linux-gnu/libcgmanager.so.0.0.0
7f46d63bd000-7f46d65bc000 ---p 00019000 08:06 397171 /lib/x86_64-linux-gnu/libcgmanager.so.0.0.0
7f46d65bc000-7f46d65be000 r--p 00018000 08:06 397171 /lib/x86_64-linux-gnu/libcgmanager.so.0.0.0
7f46d65be000-7f46d65bf000 rw-p 0001a000 08:06 397171 /lib/x86_64-linux-gnu/libcgmanager.so.0.0.0
7f46d65bf000-7f46d65cf000 r-xp 00000000 08:06 414452 /lib/x86_64-linux-gnu/libudev.so.1.3.5
7f46d65cf000-7f46d67ce000 ---p 00010000 08:06 414452 /lib/x86_64-linux-gnu/libudev.so.1.3.5
7f46d67ce000-7f46d67cf000 r--p 0000f000 08:06 414452 /lib/x86_64-linux-gnu/libudev.so.1.3.5
7f46d67cf000-7f46d67d0000 rw-p 00010000 08:06 414452 /lib/x86_64-linux-gnu/libudev.so.1.3.5
7f46d67d0000-7f46d6804000 r-xp 00000000 08:06 916505 /usr/lib/x86_64-linux-gnu/gvfs/libgvfscommon.so
7f46d6804000-7f46d6a04000 ---p 00034000 08:06 916505 /usr/lib/x86_64-linux-gnu/gvfs/libgvfscommon.so
7f46d6a04000-7f46d6a09000 r--p 00034000 08:06 916505 /usr/lib/x86_64-linux-gnu/gvfs/libgvfscommon.so
7f46d6a09000-7f46d6a0a000 rw-p 00039000 08:06 916505 /usr/lib/x86_64-linux-gnu/gvfs/libgvfscommon.so
7f46d6a0a000-7f46d6a39000 r-xp 00000000 08:06 915653 /usr/lib/x86_64-linux-gnu/gio/modules/libgvfsdbus.so
7f46d6a39000-7f46d6c39000 ---p 0002f000 08:06 915653 /usr/lib/x86_64-linux-gnu/gio/modules/libgvfsdbus.so
7f46d6c39000-7f46d6c3a000 r--p 0002f000 08:06 915653 /usr/lib/x86_64-linux-gnu/gio/modules/libgvfsdbus.so
7f46d6c3a000-7f46d6c3b000 rw-p 00030000 08:06 915653 /usr/lib/x86_64-linux-gnu/gio/modules/libgvfsdbus.so
7f46d6c3b000-7f46d6c3c000 rw-p 00000000 00:00 0
7f46d6c3c000-7f46d6c95000 r-xp 00000000 08:06 663882 /usr/lib/x86_64-linux-gnu/libibus-1.0.so.5.0.505
7f46d6c95000-7f46d6e95000 ---p 00059000 08:06 663882 /usr/lib/x86_64-linux-gnu/libibus-1.0.so.5.0.505
7f46d6e95000-7f46d6e97000 r--p 00059000 08:06 663882 /usr/lib/x86_64-linux-gnu/libibus-1.0.so.5.0.505
7f46d6e97000-7f46d6e98000 rw-p 0005b000 08:06 663882 /usr/lib/x86_64-linux-gnu/libibus-1.0.so.5.0.505
7f46d6e98000-7f46d6e99000 rw-p 00000000 00:00 0
7f46d6e99000-7f46d6e9a000 r--s 00006000 08:06 797354 /usr/share/eclipse/plugins/org.eclipse.core.variables_3.2.600.dist.jar
7f46d6e9a000-7f46d6e9c000 r--s 0000c000 08:06 801692 /usr/lib/eclipse/dropins/sdk/plugins/org.eclipse.ui.trace_1.0.1.dist.jar
7f46d6e9c000-7f46d6ea1000 r--s 00046000 08:06 800611 /usr/share/eclipse/dropins/jdt/plugins/org.eclipse.jdt.launching_3.6.100.dist.jar
7f46d6ea1000-7f46d6ea4000 ---p 00000000 00:00 0
7f46d6ea4000-7f46d6fa2000 rw-p 00000000 00:00 0 [stack:25963]
7f46d6fa2000-7f46d6fa6000 r--s 00021000 08:06 801791 /usr/lib/eclipse/dropins/sdk/plugins/org.eclipse.pde.runtime_3.4.300.dist.jar
7f46d6fa6000-7f46d6fae000 r--s 00046000 08:06 797484 /usr/share/eclipse/plugins/org.eclipse.ui.cheatsheets_3.4.200.dist.jar
7f46d6fae000-7f46d6fb3000 r--s 00028000 08:06 797498 /usr/share/eclipse/plugins/org.eclipse.ui.browser_3.4.1.dist.jar
7f46d6fb3000-7f46d6fbd000 r--s 0006c000 08:06 797500 /usr/share/eclipse/plugins/org.eclipse.help.ui_3.5.200.dist.jar
7f46d6fbd000-7f46d6ff0000 r--s 0023a000 08:06 797454 /usr/share/eclipse/plugins/org.eclipse.debug.ui_3.8.1.dist.jar
7f46d6ff0000-7f46d6ff5000 r--s 00035000 08:06 797481 /usr/share/eclipse/plugins/org.eclipse.text_3.5.200.dist.jar
7f46d6ff5000-7f46d6ff8000 r--s 00022000 08:06 800654 /usr/share/eclipse/dropins/jdt/plugins/org.eclipse.jdt.compiler.apt_1.0.500.dist.jar
7f46d6ff8000-7f46d7023000 r--s 00455000 08:06 797449 /usr/share/eclipse/plugins/org.eclipse.jdt.core_3.8.2.dist.jar
7f46d7023000-7f46d7025000 r--s 00012000 08:06 799713 /usr/lib/eclipse/plugins/org.eclipse.core.expressions_3.4.400.dist.jar
7f46d7025000-7f46d702b000 r-xp 00000000 08:06 915501 /usr/lib/x86_64-linux-gnu/gtk-2.0/2.10.0/immodules/im-ibus.so
7f46d702b000-7f46d722b000 ---p 00006000 08:06 915501 /usr/lib/x86_64-linux-gnu/gtk-2.0/2.10.0/immodules/im-ibus.so
7f46d722b000-7f46d722c000 r--p 00006000 08:06 915501 /usr/lib/x86_64-linux-gnu/gtk-2.0/2.10.0/immodules/im-ibus.so
7f46d722c000-7f46d722d000 rw-p 00007000 08:06 915501 /usr/lib/x86_64-linux-gnu/gtk-2.0/2.10.0/immodules/im-ibus.so
7f46d722d000-7f46d7236000 r--s 00055000 08:06 797475 /usr/share/eclipse/plugins/org.eclipse.team.core_3.6.100.dist.jar
7f46d7236000-7f46d7239000 ---p 00000000 00:00 0
7f46d7239000-7f46d7337000 rw-p 00000000 00:00 0 [stack:27847]
7f46d7337000-7f46d7339000 r-xp 00000000 08:06 799604 /usr/lib/eclipse/configuration/org.eclipse.osgi/bundles/35/1/.cp/os/linux/x86_64/libunixfile_1_0_0.so
7f46d7339000-7f46d7538000 ---p 00002000 08:06 799604 /usr/lib/eclipse/configuration/org.eclipse.osgi/bundles/35/1/.cp/os/linux/x86_64/libunixfile_1_0_0.so
7f46d7538000-7f46d7539000 r--p 00001000 08:06 799604 /usr/lib/eclipse/configuration/org.eclipse.osgi/bundles/35/1/.cp/os/linux/x86_64/libunixfile_1_0_0.so
7f46d7539000-7f46d753a000 rw-p 00002000 08:06 799604 /usr/lib/eclipse/configuration/org.eclipse.osgi/bundles/35/1/.cp/os/linux/x86_64/libunixfile_1_0_0.so
7f46d753a000-7f46d7562000 r--s 0020c000 08:06 797474 /usr/share/eclipse/plugins/org.eclipse.ui.ide_3.8.1.dist.jar
7f46d7562000-7f46d7566000 r-xp 00000000 08:06 916984 /usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-png.so
7f46d7566000-7f46d7766000 ---p 00004000 08:06 916984 /usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-png.so
7f46d7766000-7f46d7767000 r--p 00004000 08:06 916984 /usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-png.so
7f46d7767000-7f46d7768000 rw-p 00005000 08:06 916984 /usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-png.so
7f46d7768000-7f46d7775000 r-xp 00000000 08:06 799594 /usr/lib/jni/libswt-cairo-gtk-3836.so
7f46d7775000-7f46d7974000 ---p 0000d000 08:06 799594 /usr/lib/jni/libswt-cairo-gtk-3836.so
7f46d7974000-7f46d7975000 r--p 0000c000 08:06 799594 /usr/lib/jni/libswt-cairo-gtk-3836.so
7f46d7975000-7f46d7976000 rw-p 0000d000 08:06 799594 /usr/lib/jni/libswt-cairo-gtk-3836.so
7f46d7976000-7f46d797c000 r-xp 00000000 08:06 916981 /usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-gif.so
7f46d797c000-7f46d7b7b000 ---p 00006000 08:06 916981 /usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-gif.so
7f46d7b7b000-7f46d7b7c000 r--p 00005000 08:06 916981 /usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-gif.so
7f46d7b7c000-7f46d7b7d000 rw-p 00006000 08:06 916981 /usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-gif.so
7f46d7b7d000-7f46d7b82000 r-xp 00000000 08:06 663265 /usr/lib/x86_64-linux-gnu/libXtst.so.6.1.0
7f46d7b82000-7f46d7d81000 ---p 00005000 08:06 663265 /usr/lib/x86_64-linux-gnu/libXtst.so.6.1.0
7f46d7d81000-7f46d7d82000 r--p 00004000 08:06 663265 /usr/lib/x86_64-linux-gnu/libXtst.so.6.1.0
7f46d7d82000-7f46d7d83000 rw-p 00005000 08:06 663265 /usr/lib/x86_64-linux-gnu/libXtst.so.6.1.0
7f46d7d83000-7f46d7dfb000 r-xp 00000000 08:06 799588 /usr/lib/jni/libswt-pi-gtk-3836.so
7f46d7dfb000-7f46d7ffb000 ---p 00078000 08:06 799588 /usr/lib/jni/libswt-pi-gtk-3836.so
7f46d7ffb000-7f46d7ffc000 r--p 00078000 08:06 799588 /usr/lib/jni/libswt-pi-gtk-3836.so
7f46d7ffc000-7f46d7ffe000 rw-p 00079000 08:06 799588 /usr/lib/jni/libswt-pi-gtk-3836.so
7f46d7ffe000-7f46d8000000 rw-p 00000000 00:00 0
7f46d8000000-7f46d8024000 rw-p 00000000 00:00 0
7f46d8024000-7f46dc000000 ---p 00000000 00:00 0
7f46dc000000-7f46dc045000 rw-p 00000000 00:00 0
7f46dc045000-7f46e0000000 ---p 00000000 00:00 0
7f46e0000000-7f46e0078000 rw-p 00000000 00:00 0
7f46e0078000-7f46e4000000 ---p 00000000 00:00 0
7f46e4000000-7f46e4001000 r--s 0000c000 08:06 800616 /usr/share/eclipse/dropins/jdt/plugins/org.eclipse.jdt.compiler.tool_1.0.101.dist.jar
7f46e4001000-7f46e4009000 r--s 0003d000 08:06 799725 /usr/lib/eclipse/plugins/org.eclipse.core.databinding.observable_1.4.1.dist.jar
7f46e4009000-7f46e4012000 r--s 00037000 08:06 799719 /usr/lib/eclipse/plugins/org.eclipse.jface.databinding_1.6.0.dist.jar
7f46e4012000-7f46e4013000 r--s 00001000 08:06 800226 /usr/lib/eclipse/plugins/org.eclipse.core.filesystem.linux.x86_64_1.2.0.dist.jar
7f46e4013000-7f46e4015000 r--s 0000b000 08:06 797458 /usr/share/eclipse/plugins/org.eclipse.core.filesystem_1.3.200.dist.jar
7f46e4015000-7f46e4020000 r--s 000b9000 08:06 797349 /usr/share/eclipse/plugins/org.eclipse.core.resources_3.8.1.dist.jar
7f46e4020000-7f46e4072000 r--p 00000000 08:06 1175449 /usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf
7f46e4072000-7f46e40c9000 r--p 00000000 08:06 1178864 /usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-R.ttf
7f46e40c9000-7f46e40d7000 r--s 00000000 08:06 137740 /var/cache/fontconfig/6aa41aa22e18b8fa06a12da28ea9c28b-le64.cache-4
7f46e40d7000-7f46e40d8000 r--s 00000000 08:06 137739 /var/cache/fontconfig/c05880de57d1f5e948fdfacc138775d9-le64.cache-4
7f46e40d8000-7f46e40e3000 r--s 00000000 08:06 137738 /var/cache/fontconfig/945677eb7aeaf62f1d50efc3fb3ec7d8-le64.cache-4
7f46e40e3000-7f46e40e5000 r--s 00000000 08:06 137716 /var/cache/fontconfig/99e8ed0e538f840c565b6ed5dad60d56-le64.cache-4
7f46e40e5000-7f46e40eb000 r--s 00000000 08:06 137715 /var/cache/fontconfig/2cd17615ca594fa2959ae173292e504c-le64.cache-4
7f46e40eb000-7f46e40ec000 r--s 00000000 08:06 137606 /var/cache/fontconfig/e7071f4a29fa870f4323321c154eba04-le64.cache-4
7f46e40ec000-7f46e40ed000 r--s 00000000 08:06 137547 /var/cache/fontconfig/0d8c3b2ac0904cb8a57a757ad11a4a08-le64.cache-4
7f46e40ed000-7f46e40f4000 r--s 00000000 08:06 137497 /var/cache/fontconfig/a755afe4a08bf5b97852ceb7400b47bc-le64.cache-4
7f46e40f4000-7f46e4100000 r--s 00000000 08:06 137346 /var/cache/fontconfig/6d41288fd70b0be22e8c3a91e032eec0-le64.cache-4
7f46e4100000-7f46e4114000 r--s 00000000 08:06 137317 /var/cache/fontconfig/04aabc0a78ac019cf9454389977116d2-le64.cache-4
7f46e4114000-7f46e4115000 r--s 00000000 08:06 137283 /var/cache/fontconfig/1ac9eb803944fde146138c791f5cc56a-le64.cache-4
7f46e4115000-7f46e4119000 r--s 00000000 08:06 137282 /var/cache/fontconfig/385c0604a188198f04d133e54aba7fe7-le64.cache-4
7f46e4119000-7f46e411a000 r--s 00000000 08:06 137213 /var/cache/fontconfig/dc05db6664285cc2f12bf69c139ae4c3-le64.cache-4
7f46e411a000-7f46e411c000 r--s 00000000 08:06 137195 /var/cache/fontconfig/767a8244fc0220cfb567a839d0392e0b-le64.cache-4
7f46e411c000-7f46e411d000 r--s 00000000 08:06 133004 /var/cache/fontconfig/4794a0821666d79190d59a36cb4f44b5-le64.cache-4
7f46e411d000-7f46e4122000 r--s 00000000 08:06 137188 /var/cache/fontconfig/8801497958630a81b71ace7c5f9b32a8-le64.cache-4
7f46e4122000-7f46e4126000 r--s 00000000 08:06 134855 /var/cache/fontconfig/c57959a16110560c8d0fcea73374aeeb-le64.cache-4
7f46e4126000-7f46e4139000 r--s 00000000 08:06 137025 /var/cache/fontconfig/d52a8644073d54c13679302ca1180695-le64.cache-4
7f46e4139000-7f46e41b8000 r-xp 00000000 08:06 799589 /usr/lib/jni/libswt-gtk-3836.so
7f46e41b8000-7f46e43b7000 ---p 0007f000 08:06 799589 /usr/lib/jni/libswt-gtk-3836.so
7f46e43b7000-7f46e43b8000 r--p 0007e000 08:06 799589 /usr/lib/jni/libswt-gtk-3836.so
7f46e43b8000-7f46e43bf000 rw-p 0007f000 08:06 799589 /usr/lib/jni/libswt-gtk-3836.so
7f46e43bf000-7f46e43c2000 rw-p 00000000 00:00 0
7f46e43c2000-7f46e43c5000 ---p 00000000 00:00 0
7f46e43c5000-7f46e44c3000 rw-p 00000000 00:00 0 [stack:25948]
7f46e44c3000-7f46e44c6000 ---p 00000000 00:00 0
7f46e44c6000-7f46e45c4000 rw-p 00000000 00:00 0 [stack:25946]
7f46e45c4000-7f46e45c7000 ---p 00000000 00:00 0
7f46e45c7000-7f46e46c5000 rw-p 00000000 00:00 0
7f46e46c5000-7f46e46c8000 ---p 00000000 00:00 0
7f46e46c8000-7f46e47c6000 rw-p 00000000 00:00 0 [stack:25944]
7f46e47c6000-7f46e47c9000 ---p 00000000 00:00 0
7f46e47c9000-7f46e48c7000 rw-p 00000000 00:00 0 [stack:25940]
7f46e48c7000-7f46e48ca000 ---p 00000000 00:00 0
7f46e48ca000-7f46e49c8000 rw-p 00000000 00:00 0 [stack:25939]
7f46e49c8000-7f46e49cb000 ---p 00000000 00:00 0
7f46e49cb000-7f46e4ac9000 rw-p 00000000 00:00 0 [stack:25938]
7f46e4ac9000-7f46e4ad9000 r-xp 00000000 08:06 790059 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/libnio.so
7f46e4ad9000-7f46e4cd9000 ---p 00010000 08:06 790059 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/libnio.so
7f46e4cd9000-7f46e4cda000 r--p 00010000 08:06 790059 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/libnio.so
7f46e4cda000-7f46e4cdb000 rw-p 00011000 08:06 790059 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/libnio.so
7f46e4cdb000-7f46e4cf1000 r-xp 00000000 08:06 790038 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/libnet.so
7f46e4cf1000-7f46e4ef1000 ---p 00016000 08:06 790038 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/libnet.so
7f46e4ef1000-7f46e4ef2000 r--p 00016000 08:06 790038 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/libnet.so
7f46e4ef2000-7f46e4ef3000 rw-p 00017000 08:06 790038 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/libnet.so
7f46e4ef3000-7f46e4ef6000 r-xp 00000000 08:06 916994 /usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-bmp.so
7f46e4ef6000-7f46e50f6000 ---p 00003000 08:06 916994 /usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-bmp.so
7f46e50f6000-7f46e50f7000 r--p 00003000 08:06 916994 /usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-bmp.so
7f46e50f7000-7f46e50f8000 rw-p 00004000 08:06 916994 /usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-bmp.so
7f46e50f8000-7f46e50f9000 ---p 00000000 00:00 0
7f46e50f9000-7f46e58f9000 rw-p 00000000 00:00 0 [stack:25936]
7f46e58f9000-7f46e58fa000 ---p 00000000 00:00 0
7f46e58fa000-7f46e60fa000 rw-p 00000000 00:00 0 [stack:25935]
7f46e60fa000-7f46e6105000 r-xp 00000000 08:06 914644 /usr/lib/x86_64-linux-gnu/gio/modules/libdconfsettings.so
7f46e6105000-7f46e6305000 ---p 0000b000 08:06 914644 /usr/lib/x86_64-linux-gnu/gio/modules/libdconfsettings.so
7f46e6305000-7f46e6306000 r--p 0000b000 08:06 914644 /usr/lib/x86_64-linux-gnu/gio/modules/libdconfsettings.so
7f46e6306000-7f46e6307000 rw-p 0000c000 08:06 914644 /usr/lib/x86_64-linux-gnu/gio/modules/libdconfsettings.so
7f46e6307000-7f46e630e000 r-xp 00000000 08:06 660681 /usr/lib/x86_64-linux-gnu/libogg.so.0.8.1
7f46e630e000-7f46e650e000 ---p 00007000 08:06 660681 /usr/lib/x86_64-linux-gnu/libogg.so.0.8.1
7f46e650e000-7f46e650f000 r--p 00007000 08:06 660681 /usr/lib/x86_64-linux-gnu/libogg.so.0.8.1
7f46e650f000-7f46e6510000 rw-p 00008000 08:06 660681 /usr/lib/x86_64-linux-gnu/libogg.so.0.8.1
7f46e6510000-7f46e653c000 r-xp 00000000 08:06 660709 /usr/lib/x86_64-linux-gnu/libvorbis.so.0.4.5
7f46e653c000-7f46e673b000 ---p 0002c000 08:06 660709 /usr/lib/x86_64-linux-gnu/libvorbis.so.0.4.5
7f46e673b000-7f46e673c000 r--p 0002b000 08:06 660709 /usr/lib/x86_64-linux-gnu/libvorbis.so.0.4.5
7f46e673c000-7f46e673d000 rw-p 0002c000 08:06 660709 /usr/lib/x86_64-linux-gnu/libvorbis.so.0.4.5
7f46e673d000-7f46e6746000 r-xp 00000000 08:06 662357 /usr/lib/x86_64-linux-gnu/libltdl.so.7.3.0
7f46e6746000-7f46e6945000 ---p 00009000 08:06 662357 /usr/lib/x86_64-linux-gnu/libltdl.so.7.3.0
7f46e6945000-7f46e6946000 r--p 00008000 08:06 662357 /usr/lib/x86_64-linux-gnu/libltdl.so.7.3.0
7f46e6946000-7f46e6947000 rw-p 00009000 08:06 662357 /usr/lib/x86_64-linux-gnu/libltdl.so.7.3.0
7f46e6947000-7f46e6958000 r-xp 00000000 08:06 662161 /usr/lib/x86_64-linux-gnu/libtdb.so.1.2.12
7f46e6958000-7f46e6b57000 ---p 00011000 08:06 662161 /usr/lib/x86_64-linux-gnu/libtdb.so.1.2.12
7f46e6b57000-7f46e6b58000 r--p 00010000 08:06 662161 /usr/lib/x86_64-linux-gnu/libtdb.so.1.2.12
7f46e6b58000-7f46e6b59000 rw-p 00011000 08:06 662161 /usr/lib/x86_64-linux-gnu/libtdb.so.1.2.12
7f46e6b59000-7f46e6b60000 r-xp 00000000 08:06 660707 /usr/lib/x86_64-linux-gnu/libvorbisfile.so.3.3.4
7f46e6b60000-7f46e6d5f000 ---p 00007000 08:06 660707 /usr/lib/x86_64-linux-gnu/libvorbisfile.so.3.3.4
7f46e6d5f000-7f46e6d60000 r--p 00006000 08:06 660707 /usr/lib/x86_64-linux-gnu/libvorbisfile.so.3.3.4
7f46e6d60000-7f46e6d61000 rw-p 00007000 08:06 660707 /usr/lib/x86_64-linux-gnu/libvorbisfile.so.3.3.4
7f46e6d61000-7f46e6d70000 r-xp 00000000 08:06 663777 /usr/lib/x86_64-linux-gnu/libcanberra.so.0.2.5
7f46e6d70000-7f46e6f6f000 ---p 0000f000 08:06 663777 /usr/lib/x86_64-linux-gnu/libcanberra.so.0.2.5
7f46e6f6f000-7f46e6f70000 r--p 0000e000 08:06 663777 /usr/lib/x86_64-linux-gnu/libcanberra.so.0.2.5
7f46e6f70000-7f46e6f71000 rw-p 0000f000 08:06 663777 /usr/lib/x86_64-linux-gnu/libcanberra.so.0.2.5
7f46e6f71000-7f46e6f75000 r-xp 00000000 08:06 652922 /usr/lib/x86_64-linux-gnu/libcanberra-gtk.so.0.1.9
7f46e6f75000-7f46e7174000 ---p 00004000 08:06 652922 /usr/lib/x86_64-linux-gnu/libcanberra-gtk.so.0.1.9
7f46e7174000-7f46e7175000 r--p 00003000 08:06 652922 /usr/lib/x86_64-linux-gnu/libcanberra-gtk.so.0.1.9
7f46e7175000-7f46e7176000 rw-p 00004000 08:06 652922 /usr/lib/x86_64-linux-gnu/libcanberra-gtk.so.0.1.9
7f46e7176000-7f46e717b000 r-xp 00000000 08:06 925341 /usr/lib/x86_64-linux-gnu/gtk-2.0/modules/libcanberra-gtk-module.so
7f46e717b000-7f46e737a000 ---p 00005000 08:06 925341 /usr/lib/x86_64-linux-gnu/gtk-2.0/modules/libcanberra-gtk-module.so
7f46e737a000-7f46e737b000 r--p 00004000 08:06 925341 /usr/lib/x86_64-linux-gnu/gtk-2.0/modules/libcanberra-gtk-module.so
7f46e737b000-7f46e737c000 rw-p 00005000 08:06 925341 /usr/lib/x86_64-linux-gnu/gtk-2.0/modules/libcanberra-gtk-module.so
7f46e737c000-7f46e73ab000 r-xp 00000000 08:06 915616 /usr/lib/x86_64-linux-gnu/gtk-2.0/2.10.0/engines/libmurrine.so
7f46e73ab000-7f46e75ab000 ---p 0002f000 08:06 915616 /usr/lib/x86_64-linux-gnu/gtk-2.0/2.10.0/engines/libmurrine.so
7f46e75ab000-7f46e75ac000 r--p 0002f000 08:06 915616 /usr/lib/x86_64-linux-gnu/gtk-2.0/2.10.0/engines/libmurrine.so
7f46e75ac000-7f46e75ad000 rw-p 00030000 08:06 915616 /usr/lib/x86_64-linux-gnu/gtk-2.0/2.10.0/engines/libmurrine.so
7f46e75ad000-7f46e75bd000 r-xp 00000000 08:06 658953 /usr/lib/x86_64-linux-gnu/libunity-gtk2-parser.so.0.0.0
7f46e75bd000-7f46e77bc000 ---p 00010000 08:06 658953 /usr/lib/x86_64-linux-gnu/libunity-gtk2-parser.so.0.0.0
7f46e77bc000-7f46e77bd000 r--p 0000f000 08:06 658953 /usr/lib/x86_64-linux-gnu/libunity-gtk2-parser.so.0.0.0
7f46e77bd000-7f46e77be000 rw-p 00010000 08:06 658953 /usr/lib/x86_64-linux-gnu/libunity-gtk2-parser.so.0.0.0
7f46e77be000-7f46e77c3000 r-xp 00000000 08:06 916243 /usr/lib/x86_64-linux-gnu/gtk-2.0/modules/libunity-gtk-module.so
7f46e77c3000-7f46e79c2000 ---p 00005000 08:06 916243 /usr/lib/x86_64-linux-gnu/gtk-2.0/modules/libunity-gtk-module.so
7f46e79c2000-7f46e79c3000 r--p 00004000 08:06 916243 /usr/lib/x86_64-linux-gnu/gtk-2.0/modules/libunity-gtk-module.so
7f46e79c3000-7f46e79c4000 rw-p 00005000 08:06 916243 /usr/lib/x86_64-linux-gnu/gtk-2.0/modules/libunity-gtk-module.so
7f46e79c4000-7f46e7df3000 r-xp 00000000 08:06 656488 /usr/lib/x86_64-linux-gnu/libgtk-x11-2.0.so.0.2400.23
7f46e7df3000-7f46e7ff2000 ---p 0042f000 08:06 656488 /usr/lib/x86_64-linux-gnu/libgtk-x11-2.0.so.0.2400.23
7f46e7ff2000-7f46e7ff9000 r--p 0042e000 08:06 656488 /usr/lib/x86_64-linux-gnu/libgtk-x11-2.0.so.0.2400.23
7f46e7ff9000-7f46e7ffd000 rw-p 00435000 08:06 656488 /usr/lib/x86_64-linux-gnu/libgtk-x11-2.0.so.0.2400.23
7f46e7ffd000-7f46e8000000 rw-p 00000000 00:00 0
7f46e8000000-7f46e846e000 rw-p 00000000 00:00 0
7f46e846e000-7f46ec000000 ---p 00000000 00:00 0
7f46ec000000-7f46ec007000 r--s 00000000 08:06 137088 /var/cache/fontconfig/3047814df9a2f067bd2d96a2b9c36e5a-le64.cache-4
7f46ec007000-7f46ec00d000 r--s 00000000 08:06 137045 /var/cache/fontconfig/b47c4e1ecd0709278f4910c18777a504-le64.cache-4
7f46ec00d000-7f46ec015000 r--s 00000000 08:06 137022 /var/cache/fontconfig/3f7329c5293ffd510edef78f73874cfd-le64.cache-4
7f46ec015000-7f46ec020000 r--s 00000000 08:06 137021 /var/cache/fontconfig/d589a48862398ed80a3d6066f4f56f4c-le64.cache-4
7f46ec020000-7f46ec037000 r--s 00000000 08:06 131913 /var/cache/fontconfig/e13b20fdb08344e0e664864cc2ede53d-le64.cache-4
7f46ec037000-7f46ec044000 r--s 00000000 08:06 137730 /var/cache/fontconfig/8f02d4cb045bd6ce15663e43f347c9f8-le64.cache-4
7f46ec044000-7f46ec062000 r--s 00000000 08:06 134856 /var/cache/fontconfig/467c019e582ee353435ea5c21d137ef6-le64.cache-4
7f46ec062000-7f46ec09e000 r--s 005fe000 08:06 925359 /usr/share/java/com.ibm.icu-4.4.jar
7f46ec09e000-7f46ec0af000 r-xp 00000000 08:06 925269 /usr/lib/x86_64-linux-gnu/gtk-2.0/modules/liboverlay-scrollbar.so
7f46ec0af000-7f46ec2ae000 ---p 00011000 08:06 925269 /usr/lib/x86_64-linux-gnu/gtk-2.0/modules/liboverlay-scrollbar.so
7f46ec2ae000-7f46ec2af000 r--p 00010000 08:06 925269 /usr/lib/x86_64-linux-gnu/gtk-2.0/modules/liboverlay-scrollbar.so
7f46ec2af000-7f46ec2b0000 rw-p 00011000 08:06 925269 /usr/lib/x86_64-linux-gnu/gtk-2.0/modules/liboverlay-scrollbar.so
7f46ec2b0000-7f46ec2cf000 r-xp 00000000 08:06 670643 /usr/lib/x86_64-linux-gnu/libatk-1.0.so.0.21009.1
7f46ec2cf000-7f46ec4cf000 ---p 0001f000 08:06 670643 /usr/lib/x86_64-linux-gnu/libatk-1.0.so.0.21009.1
7f46ec4cf000-7f46ec4d1000 r--p 0001f000 08:06 670643 /usr/lib/x86_64-linux-gnu/libatk-1.0.so.0.21009.1
7f46ec4d1000-7f46ec4d2000 rw-p 00021000 08:06 670643 /usr/lib/x86_64-linux-gnu/libatk-1.0.so.0.21009.1
7f46ec4d2000-7f46ec4ec000 r-xp 00000000 08:06 661080 /usr/lib/x86_64-linux-gnu/libgraphite2.so.3.0.1
7f46ec4ec000-7f46ec6eb000 ---p 0001a000 08:06 661080 /usr/lib/x86_64-linux-gnu/libgraphite2.so.3.0.1
7f46ec6eb000-7f46ec6ed000 r--p 00019000 08:06 661080 /usr/lib/x86_64-linux-gnu/libgraphite2.so.3.0.1
7f46ec6ed000-7f46ec6ee000 rw-p 0001b000 08:06 661080 /usr/lib/x86_64-linux-gnu/libgraphite2.so.3.0.1
7f46ec6ee000-7f46ec6f3000 r-xp 00000000 08:06 663237 /usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0
7f46ec6f3000-7f46ec8f2000 ---p 00005000 08:06 663237 /usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0
7f46ec8f2000-7f46ec8f3000 r--p 00004000 08:06 663237 /usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0
7f46ec8f3000-7f46ec8f4000 rw-p 00005000 08:06 663237 /usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0
7f46ec8f4000-7f46ec8f6000 r-xp 00000000 08:06 663226 /usr/lib/x86_64-linux-gnu/libXau.so.6.0.0
7f46ec8f6000-7f46ecaf6000 ---p 00002000 08:06 663226 /usr/lib/x86_64-linux-gnu/libXau.so.6.0.0
7f46ecaf6000-7f46ecaf7000 r--p 00002000 08:06 663226 /usr/lib/x86_64-linux-gnu/libXau.so.6.0.0
7f46ecaf7000-7f46ecaf8000 rw-p 00003000 08:06 663226 /usr/lib/x86_64-linux-gnu/libXau.so.6.0.0
7f46ecaf8000-7f46ecafe000 r-xp 00000000 08:06 661639 /usr/lib/x86_64-linux-gnu/libdatrie.so.1.3.1
7f46ecafe000-7f46eccfd000 ---p 00006000 08:06 661639 /usr/lib/x86_64-linux-gnu/libdatrie.so.1.3.1
7f46eccfd000-7f46eccfe000 r--p 00005000 08:06 661639 /usr/lib/x86_64-linux-gnu/libdatrie.so.1.3.1
7f46eccfe000-7f46eccff000 rw-p 00006000 08:06 661639 /usr/lib/x86_64-linux-gnu/libdatrie.so.1.3.1
7f46eccff000-7f46ecd52000 r-xp 00000000 08:06 660590 /usr/lib/x86_64-linux-gnu/libharfbuzz.so.0.927.0
7f46ecd52000-7f46ecf52000 ---p 00053000 08:06 660590 /usr/lib/x86_64-linux-gnu/libharfbuzz.so.0.927.0
7f46ecf52000-7f46ecf53000 r--p 00053000 08:06 660590 /usr/lib/x86_64-linux-gnu/libharfbuzz.so.0.927.0
7f46ecf53000-7f46ecf54000 rw-p 00054000 08:06 660590 /usr/lib/x86_64-linux-gnu/libharfbuzz.so.0.927.0
7f46ecf54000-7f46ecf71000 r-xp 00000000 08:06 656844 /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0
7f46ecf71000-7f46ed171000 ---p 0001d000 08:06 656844 /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0
7f46ed171000-7f46ed172000 r--p 0001d000 08:06 656844 /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0
7f46ed172000-7f46ed173000 rw-p 0001e000 08:06 656844 /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0
7f46ed173000-7f46ed17b000 r-xp 00000000 08:06 661630 /usr/lib/x86_64-linux-gnu/libxcb-render.so.0.0.0
7f46ed17b000-7f46ed37a000 ---p 00008000 08:06 661630 /usr/lib/x86_64-linux-gnu/libxcb-render.so.0.0.0
7f46ed37a000-7f46ed37b000 r--p 00007000 08:06 661630 /usr/lib/x86_64-linux-gnu/libxcb-render.so.0.0.0
7f46ed37b000-7f46ed37c000 rw-p 00008000 08:06 661630 /usr/lib/x86_64-linux-gnu/libxcb-render.so.0.0.0
7f46ed37c000-7f46ed37e000 r-xp 00000000 08:06 661636 /usr/lib/x86_64-linux-gnu/libxcb-shm.so.0.0.0
7f46ed37e000-7f46ed57d000 ---p 00002000 08:06 661636 /usr/lib/x86_64-linux-gnu/libxcb-shm.so.0.0.0
7f46ed57d000-7f46ed57e000 r--p 00001000 08:06 661636 /usr/lib/x86_64-linux-gnu/libxcb-shm.so.0.0.0
7f46ed57e000-7f46ed57f000 rw-p 00002000 08:06 661636 /usr/lib/x86_64-linux-gnu/libxcb-shm.so.0.0.0
7f46ed57f000-7f46ed5a4000 r-xp 00000000 08:06 400693 /lib/x86_64-linux-gnu/libpng12.so.0.50.0
7f46ed5a4000-7f46ed7a3000 ---p 00025000 08:06 400693 /lib/x86_64-linux-gnu/libpng12.so.0.50.0
7f46ed7a3000-7f46ed7a4000 r--p 00024000 08:06 400693 /lib/x86_64-linux-gnu/libpng12.so.0.50.0
7f46ed7a4000-7f46ed7a5000 rw-p 00025000 08:06 400693 /lib/x86_64-linux-gnu/libpng12.so.0.50.0
7f46ed7a5000-7f46ed846000 r-xp 00000000 08:06 661621 /usr/lib/x86_64-linux-gnu/libpixman-1.so.0.30.2
7f46ed846000-7f46eda46000 ---p 000a1000 08:06 661621 /usr/lib/x86_64-linux-gnu/libpixman-1.so.0.30.2
7f46eda46000-7f46eda4d000 r--p 000a1000 08:06 661621 /usr/lib/x86_64-linux-gnu/libpixman-1.so.0.30.2
7f46eda4d000-7f46eda4e000 rw-p 000a8000 08:06 661621 /usr/lib/x86_64-linux-gnu/libpixman-1.so.0.30.2
7f46eda4e000-7f46eda75000 r-xp 00000000 08:06 399920 /lib/x86_64-linux-gnu/libexpat.so.1.6.0
7f46eda75000-7f46edc75000 ---p 00027000 08:06 399920 /lib/x86_64-linux-gnu/libexpat.so.1.6.0
7f46edc75000-7f46edc77000 r--p 00027000 08:06 399920 /lib/x86_64-linux-gnu/libexpat.so.1.6.0
7f46edc77000-7f46edc78000 rw-p 00029000 08:06 399920 /lib/x86_64-linux-gnu/libexpat.so.1.6.0
7f46edc78000-7f46edc8f000 r-xp 00000000 08:06 407431 /lib/x86_64-linux-gnu/libresolv-2.19.so
7f46edc8f000-7f46ede8f000 ---p 00017000 08:06 407431 /lib/x86_64-linux-gnu/libresolv-2.19.so
7f46ede8f000-7f46ede90000 r--p 00017000 08:06 407431 /lib/x86_64-linux-gnu/libresolv-2.19.so
7f46ede90000-7f46ede91000 rw-p 00018000 08:06 407431 /lib/x86_64-linux-gnu/libresolv-2.19.so
7f46ede91000-7f46ede93000 rw-p 00000000 00:00 0
7f46ede93000-7f46edeb3000 r-xp 00000000 08:06 407341 /lib/x86_64-linux-gnu/libselinux.so.1
7f46edeb3000-7f46ee0b2000 ---p 00020000 08:06 407341 /lib/x86_64-linux-gnu/libselinux.so.1
7f46ee0b2000-7f46ee0b3000 r--p 0001f000 08:06 407341 /lib/x86_64-linux-gnu/libselinux.so.1
7f46ee0b3000-7f46ee0b4000 rw-p 00020000 08:06 407341 /lib/x86_64-linux-gnu/libselinux.so.1
7f46ee0b4000-7f46ee0b6000 rw-p 00000000 00:00 0
7f46ee0b6000-7f46ee0be000 r-xp 00000000 08:06 661642 /usr/lib/x86_64-linux-gnu/libthai.so.0.2.0
7f46ee0be000-7f46ee2bd000 ---p 00008000 08:06 661642 /usr/lib/x86_64-linux-gnu/libthai.so.0.2.0
7f46ee2bd000-7f46ee2be000 r--p 00007000 08:06 661642 /usr/lib/x86_64-linux-gnu/libthai.so.0.2.0
7f46ee2be000-7f46ee2bf000 rw-p 00008000 08:06 661642 /usr/lib/x86_64-linux-gnu/libthai.so.0.2.0
7f46ee2bf000-7f46ee2c2000 r-xp 00000000 08:06 657127 /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.4000.0
7f46ee2c2000-7f46ee4c1000 ---p 00003000 08:06 657127 /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.4000.0
7f46ee4c1000-7f46ee4c2000 r--p 00002000 08:06 657127 /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.4000.0
7f46ee4c2000-7f46ee4c3000 rw-p 00003000 08:06 657127 /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.4000.0
7f46ee4c3000-7f46ee560000 r-xp 00000000 08:06 660534 /usr/lib/x86_64-linux-gnu/libfreetype.so.6.11.1
7f46ee560000-7f46ee75f000 ---p 0009d000 08:06 660534 /usr/lib/x86_64-linux-gnu/libfreetype.so.6.11.1
7f46ee75f000-7f46ee765000 r--p 0009c000 08:06 660534 /usr/lib/x86_64-linux-gnu/libfreetype.so.6.11.1
7f46ee765000-7f46ee766000 rw-p 000a2000 08:06 660534 /usr/lib/x86_64-linux-gnu/libfreetype.so.6.11.1
7f46ee766000-7f46ee77a000 r-xp 00000000 08:06 663729 /usr/lib/x86_64-linux-gnu/libpangoft2-1.0.so.0.3600.3
7f46ee77a000-7f46ee979000 ---p 00014000 08:06 663729 /usr/lib/x86_64-linux-gnu/libpangoft2-1.0.so.0.3600.3
7f46ee979000-7f46ee97a000 r--p 00013000 08:06 663729 /usr/lib/x86_64-linux-gnu/libpangoft2-1.0.so.0.3600.3
7f46ee97a000-7f46ee97b000 rw-p 00014000 08:06 663729 /usr/lib/x86_64-linux-gnu/libpangoft2-1.0.so.0.3600.3
7f46ee97b000-7f46ee98c000 r-xp 00000000 08:06 663239 /usr/lib/x86_64-linux-gnu/libXext.so.6.4.0
7f46ee98c000-7f46eeb8b000 ---p 00011000 08:06 663239 /usr/lib/x86_64-linux-gnu/libXext.so.6.4.0
7f46eeb8b000-7f46eeb8c000 r--p 00010000 08:06 663239 /usr/lib/x86_64-linux-gnu/libXext.so.6.4.0
7f46eeb8c000-7f46eeb8d000 rw-p 00011000 08:06 663239 /usr/lib/x86_64-linux-gnu/libXext.so.6.4.0
7f46eeb8d000-7f46eecbd000 r-xp 00000000 08:06 661060 /usr/lib/x86_64-linux-gnu/libX11.so.6.3.0
7f46eecbd000-7f46eeebd000 ---p 00130000 08:06 661060 /usr/lib/x86_64-linux-gnu/libX11.so.6.3.0
7f46eeebd000-7f46eeebe000 r--p 00130000 08:06 661060 /usr/lib/x86_64-linux-gnu/libX11.so.6.3.0
7f46eeebe000-7f46eeec2000 rw-p 00131000 08:06 661060 /usr/lib/x86_64-linux-gnu/libX11.so.6.3.0
7f46eeec2000-7f46eefc8000 r-xp 00000000 08:06 655878 /usr/lib/x86_64-linux-gnu/libcairo.so.2.11301.0
7f46eefc8000-7f46ef1c7000 ---p 00106000 08:06 655878 /usr/lib/x86_64-linux-gnu/libcairo.so.2.11301.0
7f46ef1c7000-7f46ef1ca000 r--p 00105000 08:06 655878 /usr/lib/x86_64-linux-gnu/libcairo.so.2.11301.0
7f46ef1ca000-7f46ef1cb000 rw-p 00108000 08:06 655878 /usr/lib/x86_64-linux-gnu/libcairo.so.2.11301.0
7f46ef1cb000-7f46ef1cd000 rw-p 00000000 00:00 0
7f46ef1cd000-7f46ef1d2000 r-xp 00000000 08:06 663241 /usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0
7f46ef1d2000-7f46ef3d1000 ---p 00005000 08:06 663241 /usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0
7f46ef3d1000-7f46ef3d2000 r--p 00004000 08:06 663241 /usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0
7f46ef3d2000-7f46ef3d3000 rw-p 00005000 08:06 663241 /usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0
7f46ef3d3000-7f46ef3d5000 r-xp 00000000 08:06 663235 /usr/lib/x86_64-linux-gnu/libXdamage.so.1.1.0
7f46ef3d5000-7f46ef5d4000 ---p 00002000 08:06 663235 /usr/lib/x86_64-linux-gnu/libXdamage.so.1.1.0
7f46ef5d4000-7f46ef5d5000 r--p 00001000 08:06 663235 /usr/lib/x86_64-linux-gnu/libXdamage.so.1.1.0
7f46ef5d5000-7f46ef5d6000 rw-p 00002000 08:06 663235 /usr/lib/x86_64-linux-gnu/libXdamage.so.1.1.0
7f46ef5d6000-7f46ef5d8000 r-xp 00000000 08:06 663231 /usr/lib/x86_64-linux-gnu/libXcomposite.so.1.0.0
7f46ef5d8000-7f46ef7d7000 ---p 00002000 08:06 663231 /usr/lib/x86_64-linux-gnu/libXcomposite.so.1.0.0
7f46ef7d7000-7f46ef7d8000 r--p 00001000 08:06 663231 /usr/lib/x86_64-linux-gnu/libXcomposite.so.1.0.0
7f46ef7d8000-7f46ef7d9000 rw-p 00002000 08:06 663231 /usr/lib/x86_64-linux-gnu/libXcomposite.so.1.0.0
7f46ef7d9000-7f46ef7e2000 r-xp 00000000 08:06 663233 /usr/lib/x86_64-linux-gnu/libXcursor.so.1.0.2
7f46ef7e2000-7f46ef9e1000 ---p 00009000 08:06 663233 /usr/lib/x86_64-linux-gnu/libXcursor.so.1.0.2
7f46ef9e1000-7f46ef9e2000 r--p 00008000 08:06 663233 /usr/lib/x86_64-linux-gnu/libXcursor.so.1.0.2
7f46ef9e2000-7f46ef9e3000 rw-p 00009000 08:06 663233 /usr/lib/x86_64-linux-gnu/libXcursor.so.1.0.2
7f46ef9e3000-7f46ef9ec000 r-xp 00000000 08:06 654613 /usr/lib/x86_64-linux-gnu/libXrandr.so.2.2.0
7f46ef9ec000-7f46efbeb000 ---p 00009000 08:06 654613 /usr/lib/x86_64-linux-gnu/libXrandr.so.2.2.0
7f46efbeb000-7f46efbec000 r--p 00008000 08:06 654613 /usr/lib/x86_64-linux-gnu/libXrandr.so.2.2.0
7f46efbec000-7f46efbed000 rw-p 00009000 08:06 654613 /usr/lib/x86_64-linux-gnu/libXrandr.so.2.2.0
7f46efbed000-7f46efbfc000 r-xp 00000000 08:06 663247 /usr/lib/x86_64-linux-gnu/libXi.so.6.1.0
7f46efbfc000-7f46efdfb000 ---p 0000f000 08:06 663247 /usr/lib/x86_64-linux-gnu/libXi.so.6.1.0
7f46efdfb000-7f46efdfc000 r--p 0000e000 08:06 663247 /usr/lib/x86_64-linux-gnu/libXi.so.6.1.0
7f46efdfc000-7f46efdfd000 rw-p 0000f000 08:06 663247 /usr/lib/x86_64-linux-gnu/libXi.so.6.1.0
7f46efdfd000-7f46efdff000 r-xp 00000000 08:06 663249 /usr/lib/x86_64-linux-gnu/libXinerama.so.1.0.0
7f46efdff000-7f46efffe000 ---p 00002000 08:06 663249 /usr/lib/x86_64-linux-gnu/libXinerama.so.1.0.0
7f46efffe000-7f46effff000 r--p 00001000 08:06 663249 /usr/lib/x86_64-linux-gnu/libXinerama.so.1.0.0
7f46effff000-7f46f0000000 rw-p 00002000 08:06 663249 /usr/lib/x86_64-linux-gnu/libXinerama.so.1.0.0
7f46f0000000-7f46f1f5f000 rw-p 00000000 00:00 0
7f46f1f5f000-7f46f4000000 ---p 00000000 00:00 0
7f46f4000000-7f46f4021000 rw-p 00000000 00:00 0
7f46f4021000-7f46f8000000 ---p 00000000 00:00 0
7f46f8000000-7f46f8148000 rw-p 00000000 00:00 0
7f46f8148000-7f46fc000000 ---p 00000000 00:00 0
7f46fc000000-7f46fd891000 rw-p 00000000 00:00 0
7f46fd891000-7f4700000000 ---p 00000000 00:00 0
7f4700000000-7f470002b000 rw-p 00000000 00:00 0
7f470002b000-7f4704000000 ---p 00000000 00:00 0
7f4704000000-7f4704024000 rw-p 00000000 00:00 0
7f4704024000-7f4708000000 ---p 00000000 00:00 0
7f4708000000-7f4708111000 rw-p 00000000 00:00 0
7f4708111000-7f470c000000 ---p 00000000 00:00 0
7f470c000000-7f470c0a1000 rw-p 00000000 00:00 0
7f470c0a1000-7f4710000000 ---p 00000000 00:00 0
7f4710000000-7f4710001000 r--s 00000000 08:06 137069 /var/cache/fontconfig/56cf4f4769d0f4abc89a4895d7bd3ae1-le64.cache-4
7f4710001000-7f4710002000 r--s 00000000 08:06 137048 /var/cache/fontconfig/b9d506c9ac06c20b433354fa67a72993-le64.cache-4
7f4710002000-7f4710003000 r--s 00000000 08:06 137020 /var/cache/fontconfig/0c9eb80ebd1c36541ebe2852d3bb0c49-le64.cache-4
7f4710003000-7f4710007000 r--s 00000000 08:06 134849 /var/cache/fontconfig/7ef2298fde41cc6eeb7af42e48b7d293-le64.cache-4
7f4710007000-7f4710009000 r--s 00000000 08:06 137822 /var/cache/fontconfig/16326683038b281783a0ef8c680e3a10-le64.cache-4
7f4710009000-7f471000a000 r--s 00000000 08:06 134857 /var/cache/fontconfig/e0aa53bcfa504e64f87823c16bc01eb6-le64.cache-4
7f471000a000-7f471000e000 r--s 00015000 08:06 799919 /usr/lib/eclipse/plugins/org.eclipse.core.commands_3.6.1.dist.jar
7f471000e000-7f4710012000 r--s 0001e000 08:06 799724 /usr/lib/eclipse/plugins/org.eclipse.ui_3.8.0.dist.jar
7f4710012000-7f4710028000 r--s 00191000 08:06 799593 /usr/lib/java/swt-gtk-3.8.2.jar
7f4710028000-7f471003d000 r--s 000ee000 08:06 799722 /usr/lib/eclipse/plugins/org.eclipse.jface_3.8.0.dist.jar
7f471003d000-7f471003e000 r--s 00000000 08:06 797446 /usr/share/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.101.dist/compatibility.jar
7f471003e000-7f4710084000 r--s 0039d000 08:06 799918 /usr/lib/eclipse/plugins/org.eclipse.ui.workbench_3.8.1.dist.jar
7f4710084000-7f4710086000 r--s 0000d000 08:06 797512 /usr/share/eclipse/plugins/org.eclipse.ui.ide.application_1.0.400.dist.jar
7f4710086000-7f4710088000 r--s 0000b000 08:06 925310 /usr/share/java/org.apache.felix.gogo.command.jar
7f4710088000-7f4710089000 r--s 0000b000 08:06 925315 /usr/share/java/org.apache.felix.gogo.shell.jar
7f4710089000-7f471008b000 r--s 0000f000 08:06 925262 /usr/share/java/org.apache.felix.gogo.runtime.jar
7f471008b000-7f471008d000 r--s 00018000 08:06 799826 /usr/lib/eclipse/plugins/org.eclipse.equinox.console_1.0.0.dist.jar
7f471008d000-7f471008e000 r--s 00006000 08:06 797485 /usr/share/eclipse/plugins/org.eclipse.equinox.p2.directorywatcher_1.0.300.dist.jar
7f471008e000-7f4710090000 r--s 0000e000 08:06 797505 /usr/share/eclipse/plugins/org.eclipse.equinox.p2.core_2.2.0.dist.jar
7f4710090000-7f4710091000 r--s 0000a000 08:06 797515 /usr/share/eclipse/plugins/org.eclipse.equinox.p2.reconciler.dropins_1.1.200.dist.jar
7f4710091000-7f4710094000 r--s 00013000 08:06 797452 /usr/share/eclipse/plugins/org.eclipse.core.runtime.compatibility_3.2.200.dist.jar
7f4710094000-7f4710096000 r--s 00012000 08:06 799614 /usr/lib/eclipse/plugins/org.eclipse.equinox.app_1.3.100.dist.jar
7f4710096000-7f4710098000 r--s 00013000 08:06 799716 /usr/lib/eclipse/plugins/org.eclipse.core.jobs_3.5.200.dist.jar
7f4710098000-7f47100a1000 r--s 000b9000 08:06 787832 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/resources.jar
7f47100a1000-7f47100a3000 r--s 00016000 08:06 799824 /usr/lib/eclipse/plugins/org.eclipse.update.configurator_3.3.200.dist.jar
7f47100a3000-7f47100a6000 r--s 0001a000 08:06 799721 /usr/lib/eclipse/plugins/org.eclipse.equinox.preferences_3.5.0.dist.jar
7f47100a6000-7f47100a8000 r--s 00013000 08:06 799914 /usr/lib/eclipse/plugins/org.eclipse.core.contenttype_3.4.200.dist.jar
7f47100a8000-7f47100a9000 r--s 00001000 08:06 797493 /usr/share/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.100.dist/runtime_registry_compatibility.jar
7f47100a9000-7f47100ac000 r--s 00028000 08:06 799720 /usr/lib/eclipse/plugins/org.eclipse.equinox.registry_3.5.200.dist.jar
7f47100ac000-7f47100ae000 r--s 0000f000 08:06 799718 /usr/lib/eclipse/plugins/org.eclipse.core.runtime_3.8.0.dist.jar
7f47100ae000-7f47100b1000 r--s 00010000 08:06 799564 /usr/lib/eclipse/plugins/org.eclipse.osgi.services_3.3.100.dist.jar
7f47100b1000-7f47100b4000 r--s 0000f000 08:06 799715 /usr/lib/eclipse/plugins/org.eclipse.equinox.util_1.0.400.dist.jar
7f47100b4000-7f47100b7000 r--s 0002c000 08:06 799913 /usr/lib/eclipse/plugins/org.eclipse.equinox.ds_1.4.0.dist.jar
7f47100b7000-7f47100ba000 r--s 00016000 08:06 799825 /usr/lib/eclipse/plugins/org.eclipse.equinox.common_3.6.100.dist.jar
7f47100ba000-7f47100bc000 r--s 00008000 08:06 799612 /usr/lib/eclipse/plugins/org.eclipse.equinox.simpleconfigurator_1.0.301.dist.jar
7f47100bc000-7f47100d0000 r--s 0013a000 08:06 799566 /usr/lib/eclipse/plugins/org.eclipse.osgi_3.8.1.dist.jar
7f47100d0000-7f4710130000 rw-s 00000000 00:04 7929876 /SYSV00000000 (deleted)
7f4710130000-7f4710136000 r--p 00000000 08:06 927374 /usr/share/locale-langpack/fr/LC_MESSAGES/gdk-pixbuf.mo
7f4710136000-7f4710199000 rw-p 00000000 00:00 0
7f4710199000-7f47101e4000 r--p 00000000 08:06 1177538 /usr/share/glib-2.0/schemas/gschemas.compiled
7f47101e4000-7f47101ed000 r-xp 00000000 08:06 663261 /usr/lib/x86_64-linux-gnu/libXrender.so.1.3.0
7f47101ed000-7f47103ec000 ---p 00009000 08:06 663261 /usr/lib/x86_64-linux-gnu/libXrender.so.1.3.0
7f47103ec000-7f47103ed000 r--p 00008000 08:06 663261 /usr/lib/x86_64-linux-gnu/libXrender.so.1.3.0
7f47103ed000-7f47103ee000 rw-p 00009000 08:06 663261 /usr/lib/x86_64-linux-gnu/libXrender.so.1.3.0
7f47103ee000-7f4710428000 r-xp 00000000 08:06 654941 /usr/lib/x86_64-linux-gnu/libfontconfig.so.1.8.0
7f4710428000-7f4710627000 ---p 0003a000 08:06 654941 /usr/lib/x86_64-linux-gnu/libfontconfig.so.1.8.0
7f4710627000-7f4710629000 r--p 00039000 08:06 654941 /usr/lib/x86_64-linux-gnu/libfontconfig.so.1.8.0
7f4710629000-7f471062a000 rw-p 0003b000 08:06 654941 /usr/lib/x86_64-linux-gnu/libfontconfig.so.1.8.0
7f471062a000-7f4710795000 r-xp 00000000 08:06 657123 /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.4000.0
7f4710795000-7f4710995000 ---p 0016b000 08:06 657123 /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.4000.0
7f4710995000-7f4710999000 r--p 0016b000 08:06 657123 /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.4000.0
7f4710999000-7f471099b000 rw-p 0016f000 08:06 657123 /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.4000.0
7f471099b000-7f471099d000 rw-p 00000000 00:00 0
7f471099d000-7f47109bc000 r-xp 00000000 08:06 653098 /usr/lib/x86_64-linux-gnu/libgdk_pixbuf-2.0.so.0.3000.7
7f47109bc000-7f4710bbc000 ---p 0001f000 08:06 653098 /usr/lib/x86_64-linux-gnu/libgdk_pixbuf-2.0.so.0.3000.7
7f4710bbc000-7f4710bbd000 r--p 0001f000 08:06 653098 /usr/lib/x86_64-linux-gnu/libgdk_pixbuf-2.0.so.0.3000.7
7f4710bbd000-7f4710bbe000 rw-p 00020000 08:06 653098 /usr/lib/x86_64-linux-gnu/libgdk_pixbuf-2.0.so.0.3000.7
7f4710bbe000-7f4710c08000 r-xp 00000000 08:06 663912 /usr/lib/x86_64-linux-gnu/libpango-1.0.so.0.3600.3
7f4710c08000-7f4710e08000 ---p 0004a000 08:06 663912 /usr/lib/x86_64-linux-gnu/libpango-1.0.so.0.3600.3
7f4710e08000-7f4710e0a000 r--p 0004a000 08:06 663912 /usr/lib/x86_64-linux-gnu/libpango-1.0.so.0.3600.3
7f4710e0a000-7f4710e0b000 rw-p 0004c000 08:06 663912 /usr/lib/x86_64-linux-gnu/libpango-1.0.so.0.3600.3
7f4710e0b000-7f4710e16000 r-xp 00000000 08:06 671435 /usr/lib/x86_64-linux-gnu/libpangocairo-1.0.so.0.3600.3
7f4710e16000-7f4711016000 ---p 0000b000 08:06 671435 /usr/lib/x86_64-linux-gnu/libpangocairo-1.0.so.0.3600.3
7f4711016000-7f4711017000 r--p 0000b000 08:06 671435 /usr/lib/x86_64-linux-gnu/libpangocairo-1.0.so.0.3600.3
7f4711017000-7f4711018000 rw-p 0000c000 08:06 671435 /usr/lib/x86_64-linux-gnu/libpangocairo-1.0.so.0.3600.3
7f4711018000-7f47110c5000 r-xp 00000000 08:06 656509 /usr/lib/x86_64-linux-gnu/libgdk-x11-2.0.so.0.2400.23
7f47110c5000-7f47112c4000 ---p 000ad000 08:06 656509 /usr/lib/x86_64-linux-gnu/libgdk-x11-2.0.so.0.2400.23
7f47112c4000-7f47112c8000 r--p 000ac000 08:06 656509 /usr/lib/x86_64-linux-gnu/libgdk-x11-2.0.so.0.2400.23
7f47112c8000-7f47112ca000 rw-p 000b0000 08:06 656509 /usr/lib/x86_64-linux-gnu/libgdk-x11-2.0.so.0.2400.23
7f47112ca000-7f4711307000 r-xp 00000000 08:06 407439 /lib/x86_64-linux-gnu/libpcre.so.3.13.1
7f4711307000-7f4711506000 ---p 0003d000 08:06 407439 /lib/x86_64-linux-gnu/libpcre.so.3.13.1
7f4711506000-7f4711507000 r--p 0003c000 08:06 407439 /lib/x86_64-linux-gnu/libpcre.so.3.13.1
7f4711507000-7f4711508000 rw-p 0003d000 08:06 407439 /lib/x86_64-linux-gnu/libpcre.so.3.13.1
7f4711508000-7f471150f000 r-xp 00000000 08:06 661089 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.1
7f471150f000-7f471170e000 ---p 00007000 08:06 661089 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.1
7f471170e000-7f471170f000 r--p 00006000 08:06 661089 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.1
7f471170f000-7f4711710000 rw-p 00007000 08:06 661089 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.1
7f4711710000-7f4711816000 r-xp 00000000 08:06 414486 /lib/x86_64-linux-gnu/libglib-2.0.so.0.4000.0
7f4711816000-7f4711a15000 ---p 00106000 08:06 414486 /lib/x86_64-linux-gnu/libglib-2.0.so.0.4000.0
7f4711a15000-7f4711a16000 r--p 00105000 08:06 414486 /lib/x86_64-linux-gnu/libglib-2.0.so.0.4000.0
7f4711a16000-7f4711a17000 rw-p 00106000 08:06 414486 /lib/x86_64-linux-gnu/libglib-2.0.so.0.4000.0
7f4711a17000-7f4711a18000 rw-p 00000000 00:00 0
7f4711a18000-7f4711a67000 r-xp 00000000 08:06 657121 /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.4000.0
7f4711a67000-7f4711c67000 ---p 0004f000 08:06 657121 /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.4000.0
7f4711c67000-7f4711c68000 r--p 0004f000 08:06 657121 /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.4000.0
7f4711c68000-7f4711c69000 rw-p 00050000 08:06 657121 /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.4000.0
7f4711c69000-7f4711c76000 r-xp 00000000 08:06 799912 /usr/lib/eclipse/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.dist/eclipse_1503.so
7f4711c76000-7f4711e75000 ---p 0000d000 08:06 799912 /usr/lib/eclipse/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.dist/eclipse_1503.so
7f4711e75000-7f4711e76000 r--p 0000c000 08:06 799912 /usr/lib/eclipse/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.dist/eclipse_1503.so
7f4711e76000-7f4711e77000 rw-p 0000d000 08:06 799912 /usr/lib/eclipse/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.dist/eclipse_1503.so
7f4711e77000-7f4711e78000 ---p 00000000 00:00 0
7f4711e78000-7f4711f78000 rw-p 00000000 00:00 0 [stack:25933]
7f4711f78000-7f4711f7b000 ---p 00000000 00:00 0
7f4711f7b000-7f4712079000 rw-p 00000000 00:00 0 [stack:25932]
7f4712079000-7f471207c000 ---p 00000000 00:00 0
7f471207c000-7f471217a000 rw-p 00000000 00:00 0 [stack:25931]
7f471217a000-7f471217d000 ---p 00000000 00:00 0
7f471217d000-7f471227b000 rw-p 00000000 00:00 0 [stack:25930]
7f471227b000-7f471227e000 ---p 00000000 00:00 0
7f471227e000-7f471237c000 rw-p 00000000 00:00 0 [stack:25929]
7f471237c000-7f47128fd000 r--p 00000000 08:06 676576 /usr/lib/locale/locale-archive
7f47128fd000-7f4712900000 ---p 00000000 00:00 0
7f4712900000-7f47129fe000 rw-p 00000000 00:00 0 [stack:25928]
7f47129fe000-7f4712a01000 ---p 00000000 00:00 0
7f4712a01000-7f4712aff000 rw-p 00000000 00:00 0 [stack:25927]
7f4712aff000-7f4712b00000 ---p 00000000 00:00 0
7f4712b00000-7f4714000000 rw-p 00000000 00:00 0 [stack:25926]
7f4714000000-7f47141af000 rw-p 00000000 00:00 0
7f47141af000-7f4718000000 ---p 00000000 00:00 0
7f4718000000-7f471801f000 r--s 00000000 08:06 918335 /usr/share/mime/mime.cache
7f471801f000-7f4718027000 r--p 00000000 08:06 395511 /home/alex/.config/dconf/user (deleted)
7f4718027000-7f4718042000 r--p 00000000 08:06 927268 /usr/share/locale-langpack/fr/LC_MESSAGES/glib20.mo
7f4718042000-7f471806d000 r--p 00000000 08:06 926555 /usr/share/locale-langpack/fr/LC_MESSAGES/gtk20-properties.mo
7f471806d000-7f47189bf000 rw-p 00000000 00:00 0
7f47189bf000-7f4718b6d000 r--s 01cfc000 08:06 787820 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/rt.jar
7f4718b6d000-7f4718d7e000 rw-p 00000000 00:00 0
7f4718d7e000-7f4718d7f000 ---p 00000000 00:00 0
7f4718d7f000-7f4718e7f000 rw-p 00000000 00:00 0 [stack:25925]
7f4718e7f000-7f4718e80000 ---p 00000000 00:00 0
7f4718e80000-7f4718f9e000 rw-p 00000000 00:00 0 [stack:25924]
7f4718f9e000-7f4718fad000 ---p 00000000 00:00 0
7f4718fad000-7f4719000000 rw-p 00000000 00:00 0
7f4719000000-7f4719540000 rwxp 00000000 00:00 0
7f4719540000-7f471d7c5000 rw-p 00000000 00:00 0
7f471d7c5000-7f4720000000 ---p 00000000 00:00 0
7f4720000000-7f4720001000 r--s 00006000 08:06 797506 /usr/share/eclipse/plugins/org.eclipse.equinox.event_1.2.200.dist.jar
7f4720001000-7f4720002000 r--s 00000000 00:16 11058146 /run/user/1000/dconf/user (deleted)
7f4720002000-7f4720028000 r--p 00000000 08:06 950478 /usr/share/locale-langpack/fr/LC_MESSAGES/libc.mo
7f4720028000-7f4720037000 r--p 00000000 08:06 926796 /usr/share/locale-langpack/fr/LC_MESSAGES/gtk20.mo
7f4720037000-7f4720056000 rw-p 00000000 00:00 0
7f4720056000-7f47200b7000 rw-p 00000000 00:00 0
7f47200b7000-7f47200d5000 rw-p 00000000 00:00 0
7f47200d5000-7f47200e4000 ---p 00000000 00:00 0
7f47200e4000-7f4720137000 rw-p 00000000 00:00 0
7f4720137000-7f4720156000 rw-p 00000000 00:00 0
7f4720156000-7f47201b7000 rw-p 00000000 00:00 0
7f47201b7000-7f47201e1000 rw-p 00000000 00:00 0
7f47201e1000-7f47201ed000 ---p 00000000 00:00 0
7f47201ed000-7f47201f7000 rw-p 00000000 00:00 0
7f47201f7000-7f47201f8000 rw-p 00000000 00:00 0
7f47201f8000-7f4720200000 r-xp 00000000 08:06 787870 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/libzip.so
7f4720200000-7f47203ff000 ---p 00008000 08:06 787870 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/libzip.so
7f47203ff000-7f4720400000 r--p 00007000 08:06 787870 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/libzip.so
7f4720400000-7f4720401000 rw-p 00008000 08:06 787870 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/libzip.so
7f4720401000-7f472040c000 r-xp 00000000 08:06 407417 /lib/x86_64-linux-gnu/libnss_files-2.19.so
7f472040c000-7f472060b000 ---p 0000b000 08:06 407417 /lib/x86_64-linux-gnu/libnss_files-2.19.so
7f472060b000-7f472060c000 r--p 0000a000 08:06 407417 /lib/x86_64-linux-gnu/libnss_files-2.19.so
7f472060c000-7f472060d000 rw-p 0000b000 08:06 407417 /lib/x86_64-linux-gnu/libnss_files-2.19.so
7f472060d000-7f4720618000 r-xp 00000000 08:06 407424 /lib/x86_64-linux-gnu/libnss_nis-2.19.so
7f4720618000-7f4720817000 ---p 0000b000 08:06 407424 /lib/x86_64-linux-gnu/libnss_nis-2.19.so
7f4720817000-7f4720818000 r--p 0000a000 08:06 407424 /lib/x86_64-linux-gnu/libnss_nis-2.19.so
7f4720818000-7f4720819000 rw-p 0000b000 08:06 407424 /lib/x86_64-linux-gnu/libnss_nis-2.19.so
7f4720819000-7f4720830000 r-xp 00000000 08:06 407421 /lib/x86_64-linux-gnu/libnsl-2.19.so
7f4720830000-7f4720a2f000 ---p 00017000 08:06 407421 /lib/x86_64-linux-gnu/libnsl-2.19.so
7f4720a2f000-7f4720a30000 r--p 00016000 08:06 407421 /lib/x86_64-linux-gnu/libnsl-2.19.so
7f4720a30000-7f4720a31000 rw-p 00017000 08:06 407421 /lib/x86_64-linux-gnu/libnsl-2.19.so
7f4720a31000-7f4720a33000 rw-p 00000000 00:00 0
7f4720a33000-7f4720a3c000 r-xp 00000000 08:06 407425 /lib/x86_64-linux-gnu/libnss_compat-2.19.so
7f4720a3c000-7f4720c3b000 ---p 00009000 08:06 407425 /lib/x86_64-linux-gnu/libnss_compat-2.19.so
7f4720c3b000-7f4720c3c000 r--p 00008000 08:06 407425 /lib/x86_64-linux-gnu/libnss_compat-2.19.so
7f4720c3c000-7f4720c3d000 rw-p 00009000 08:06 407425 /lib/x86_64-linux-gnu/libnss_compat-2.19.so
7f4720c3d000-7f4720c68000 r-xp 00000000 08:06 787860 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/libjava.so
7f4720c68000-7f4720e67000 ---p 0002b000 08:06 787860 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/libjava.so
7f4720e67000-7f4720e68000 r--p 0002a000 08:06 787860 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/libjava.so
7f4720e68000-7f4720e6a000 rw-p 0002b000 08:06 787860 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/libjava.so
7f4720e6a000-7f4720e7a000 r-xp 00000000 08:06 790090 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/libverify.so
7f4720e7a000-7f4721079000 ---p 00010000 08:06 790090 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/libverify.so
7f4721079000-7f472107b000 r--p 0000f000 08:06 790090 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/libverify.so
7f472107b000-7f472107c000 rw-p 00011000 08:06 790090 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/libverify.so
7f472107c000-7f4721083000 r-xp 00000000 08:06 407433 /lib/x86_64-linux-gnu/librt-2.19.so
7f4721083000-7f4721282000 ---p 00007000 08:06 407433 /lib/x86_64-linux-gnu/librt-2.19.so
7f4721282000-7f4721283000 r--p 00006000 08:06 407433 /lib/x86_64-linux-gnu/librt-2.19.so
7f4721283000-7f4721284000 rw-p 00007000 08:06 407433 /lib/x86_64-linux-gnu/librt-2.19.so
7f4721284000-7f472129a000 r-xp 00000000 08:06 398377 /lib/x86_64-linux-gnu/libgcc_s.so.1
7f472129a000-7f4721499000 ---p 00016000 08:06 398377 /lib/x86_64-linux-gnu/libgcc_s.so.1
7f4721499000-7f472149a000 rw-p 00015000 08:06 398377 /lib/x86_64-linux-gnu/libgcc_s.so.1
7f472149a000-7f472159f000 r-xp 00000000 08:06 407418 /lib/x86_64-linux-gnu/libm-2.19.so
7f472159f000-7f472179e000 ---p 00105000 08:06 407418 /lib/x86_64-linux-gnu/libm-2.19.so
7f472179e000-7f472179f000 r--p 00104000 08:06 407418 /lib/x86_64-linux-gnu/libm-2.19.so
7f472179f000-7f47217a0000 rw-p 00105000 08:06 407418 /lib/x86_64-linux-gnu/libm-2.19.so
7f47217a0000-7f4721886000 r-xp 00000000 08:06 659475 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.19
7f4721886000-7f4721a85000 ---p 000e6000 08:06 659475 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.19
7f4721a85000-7f4721a8d000 r--p 000e5000 08:06 659475 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.19
7f4721a8d000-7f4721a8f000 rw-p 000ed000 08:06 659475 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.19
7f4721a8f000-7f4721aa4000 rw-p 00000000 00:00 0
7f4721aa4000-7f4722585000 r-xp 00000000 08:06 1190065 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/server/libjvm.so
7f4722585000-7f4722784000 ---p 00ae1000 08:06 1190065 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/server/libjvm.so
7f4722784000-7f4722816000 r--p 00ae0000 08:06 1190065 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/server/libjvm.so
7f4722816000-7f4722839000 rw-p 00b72000 08:06 1190065 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/server/libjvm.so
7f4722839000-7f4722866000 rw-p 00000000 00:00 0
7f4722866000-7f472287e000 r-xp 00000000 08:06 396157 /lib/x86_64-linux-gnu/libz.so.1.2.8
7f472287e000-7f4722a7d000 ---p 00018000 08:06 396157 /lib/x86_64-linux-gnu/libz.so.1.2.8
7f4722a7d000-7f4722a7e000 r--p 00017000 08:06 396157 /lib/x86_64-linux-gnu/libz.so.1.2.8
7f4722a7e000-7f4722a7f000 rw-p 00018000 08:06 396157 /lib/x86_64-linux-gnu/libz.so.1.2.8
7f4722a7f000-7f4722a98000 r-xp 00000000 08:06 407432 /lib/x86_64-linux-gnu/libpthread-2.19.so
7f4722a98000-7f4722c97000 ---p 00019000 08:06 407432 /lib/x86_64-linux-gnu/libpthread-2.19.so
7f4722c97000-7f4722c98000 r--p 00018000 08:06 407432 /lib/x86_64-linux-gnu/libpthread-2.19.so
7f4722c98000-7f4722c99000 rw-p 00019000 08:06 407432 /lib/x86_64-linux-gnu/libpthread-2.19.so
7f4722c99000-7f4722c9d000 rw-p 00000000 00:00 0
7f4722c9d000-7f4722ca0000 r-xp 00000000 08:06 407429 /lib/x86_64-linux-gnu/libdl-2.19.so
7f4722ca0000-7f4722e9f000 ---p 00003000 08:06 407429 /lib/x86_64-linux-gnu/libdl-2.19.so
7f4722e9f000-7f4722ea0000 r--p 00002000 08:06 407429 /lib/x86_64-linux-gnu/libdl-2.19.so
7f4722ea0000-7f4722ea1000 rw-p 00003000 08:06 407429 /lib/x86_64-linux-gnu/libdl-2.19.so
7f4722ea1000-7f472305d000 r-xp 00000000 08:06 407415 /lib/x86_64-linux-gnu/libc-2.19.so
7f472305d000-7f472325c000 ---p 001bc000 08:06 407415 /lib/x86_64-linux-gnu/libc-2.19.so
7f472325c000-7f4723260000 r--p 001bb000 08:06 407415 /lib/x86_64-linux-gnu/libc-2.19.so
7f4723260000-7f4723262000 rw-p 001bf000 08:06 407415 /lib/x86_64-linux-gnu/libc-2.19.so
7f4723262000-7f4723267000 rw-p 00000000 00:00 0
7f4723267000-7f4723274000 r-xp 00000000 08:06 1190067 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/jli/libjli.so
7f4723274000-7f4723473000 ---p 0000d000 08:06 1190067 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/jli/libjli.so
7f4723473000-7f4723474000 r--p 0000c000 08:06 1190067 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/jli/libjli.so
7f4723474000-7f4723475000 rw-p 0000d000 08:06 1190067 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/jli/libjli.so
7f4723475000-7f4723498000 r-xp 00000000 08:06 407414 /lib/x86_64-linux-gnu/ld-2.19.so
7f4723498000-7f472349f000 r--s 00000000 08:06 950623 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache
7f472349f000-7f47234a4000 r--s 0004c000 08:06 787838 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/jsse.jar
7f47234a4000-7f47234a8000 r--s 0003b000 08:06 1190047 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/ext/sunpkcs11.jar
7f47234a8000-7f47234ab000 r--s 0000f000 08:06 1179708 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/ext/pulse-java.jar
7f47234ab000-7f47234ad000 r--s 00006000 08:06 929969 /usr/share/java/java-atk-wrapper.jar
7f47234ad000-7f47234c2000 rw-p 00000000 00:00 0
7f47234c2000-7f472356d000 rw-p 00000000 00:00 0
7f472356d000-7f4723570000 ---p 00000000 00:00 0
7f4723570000-7f4723673000 rw-p 00000000 00:00 0 [stack:25923]
7f4723673000-7f4723674000 r--s 0000a000 08:06 799921 /usr/lib/eclipse/plugins/org.eclipse.equinox.launcher_1.3.0.dist.jar
7f4723674000-7f4723676000 r--s 00012000 08:06 1179712 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/ext/zipfs.jar
7f4723676000-7f4723677000 r--s 00002000 08:06 1190049 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/ext/dnsns.jar
7f4723677000-7f472367a000 r--s 00032000 08:06 1190043 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/ext/sunjce_provider.jar
7f472367a000-7f472367e000 r--s 00085000 08:06 1190045 /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/ext/localedata.jar
7f472367e000-7f472368b000 rw-p 00000000 00:00 0
7f472368b000-7f4723693000 rw-s 00000000 08:06 22361 /tmp/hsperfdata_alex/25922
7f4723693000-7f4723694000 rw-p 00000000 00:00 0
7f4723694000-7f4723695000 r--p 00000000 00:00 0
7f4723695000-7f4723697000 rw-p 00000000 00:00 0
7f4723697000-7f4723698000 r--p 00022000 08:06 407414 /lib/x86_64-linux-gnu/ld-2.19.so
7f4723698000-7f4723699000 rw-p 00023000 08:06 407414 /lib/x86_64-linux-gnu/ld-2.19.so
7f4723699000-7f472369a000 rw-p 00000000 00:00 0
7fffe7425000-7fffe7447000 rw-p 00000000 00:00 0 [stack]
7fffe7560000-7fffe7562000 r-xp 00000000 00:00 0 [vdso]
ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall]
VM Arguments:
jvm_args: -Xms40m -Xmx384m -Dorg.eclipse.equinox.p2.reconciler.dropins.directory=/usr/share/eclipse/dropins -XX:MaxPermSize=256m
java_command: /usr/lib/eclipse//plugins/org.eclipse.equinox.launcher_1.3.0.dist.jar -os linux -ws gtk -arch x86_64 -showsplash /usr/lib/eclipse//plugins/org.eclipse.platform_3.8.1.dist/splash.bmp -launcher /usr/lib/eclipse/eclipse -name Eclipse --launcher.library /usr/lib/eclipse//plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.dist/eclipse_1503.so -startup /usr/lib/eclipse//plugins/org.eclipse.equinox.launcher_1.3.0.dist.jar --launcher.overrideVmargs -exitdata 778012 -vm /usr/bin/java -vmargs -Xms40m -Xmx384m -Dorg.eclipse.equinox.p2.reconciler.dropins.directory=/usr/share/eclipse/dropins -XX:MaxPermSize=256m -jar /usr/lib/eclipse//plugins/org.eclipse.equinox.launcher_1.3.0.dist.jar
Launcher Type: SUN_STANDARD
Environment Variables:
JAVA_HOME=/usr/lib/jvm/java-1.7.0-openjdk-amd64
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games
USERNAME=alex
SHELL=/bin/bash
DISPLAY=:0
Signal Handlers:
SIGSEGV: [libjvm.so+0x918620], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGBUS: [libjvm.so+0x918620], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGFPE: [libjvm.so+0x795e30], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGPIPE: SIG_IGN, sa_mask[0]=0x00001000, sa_flags=0x10000000
SIGXFSZ: [libjvm.so+0x795e30], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGILL: [libjvm.so+0x795e30], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
SIGUSR2: [libjvm.so+0x795cd0], sa_mask[0]=0x00000000, sa_flags=0x10000004
SIGHUP: [libjvm.so+0x795eb0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGINT: [libjvm.so+0x795eb0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGTERM: [libjvm.so+0x795eb0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGQUIT: [libjvm.so+0x795eb0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
--------------- S Y S T E M ---------------
OS:Ubuntu 14.04 (trusty)
uname:Linux 3.13.0-29-generic #53-Ubuntu SMP Wed Jun 4 21:00:20 UTC 2014 x86_64
libc:glibc 2.19 NPTL 2.19
rlimit: STACK 8192k, CORE 0k, NPROC 30943, NOFILE 4096, AS infinity
load average:1,44 1,00 1,20
/proc/meminfo:
MemTotal: 4048252 kB
MemFree: 135508 kB
Buffers: 247088 kB
Cached: 1830568 kB
SwapCached: 4328 kB
Active: 1759780 kB
Inactive: 1798060 kB
Active(anon): 904164 kB
Inactive(anon): 613040 kB
Active(file): 855616 kB
Inactive(file): 1185020 kB
Unevictable: 24312 kB
Mlocked: 24312 kB
SwapTotal: 4192252 kB
SwapFree: 4160316 kB
Dirty: 2776 kB
Writeback: 0 kB
AnonPages: 1500648 kB
Mapped: 207424 kB
Shmem: 30276 kB
Slab: 228368 kB
SReclaimable: 189796 kB
SUnreclaim: 38572 kB
KernelStack: 3888 kB
PageTables: 33364 kB
NFS_Unstable: 0 kB
Bounce: 0 kB
WritebackTmp: 0 kB
CommitLimit: 6216376 kB
Committed_AS: 4821020 kB
VmallocTotal: 34359738367 kB
VmallocUsed: 290908 kB
VmallocChunk: 34359439484 kB
HardwareCorrupted: 0 kB
AnonHugePages: 399360 kB
HugePages_Total: 0
HugePages_Free: 0
HugePages_Rsvd: 0
HugePages_Surp: 0
Hugepagesize: 2048 kB
DirectMap4k: 89600 kB
DirectMap2M: 4104192 kB
DirectMap1G: 0 kB
CPU:total 2 (2 cores per cpu, 1 threads per core) family 16 model 6 stepping 2, cmov, cx8, fxsr, mmx, sse, sse2, sse3, popcnt, mmxext, 3dnowpref, lzcnt, sse4a, tsc, tscinvbit, tscinv
/proc/cpuinfo:
processor : 0
vendor_id : AuthenticAMD
cpu family : 16
model : 6
model name : AMD Turion(tm) II Dual-Core Mobile M520
stepping : 2
microcode : 0x1000098
cpu MHz : 2100.000
cache size : 512 KB
physical id : 0
siblings : 2
core id : 0
cpu cores : 2
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 5
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt hw_pstate npt lbrv svm_lock nrip_save
bogomips : 4598.56
TLB size : 1024 4K pages
clflush size : 64
cache_alignment : 64
address sizes : 48 bits physical, 48 bits virtual
power management: ts ttp tm stc 100mhzsteps hwpstate
processor : 1
vendor_id : AuthenticAMD
cpu family : 16
model : 6
model name : AMD Turion(tm) II Dual-Core Mobile M520
stepping : 2
microcode : 0x1000098
cpu MHz : 2300.000
cache size : 512 KB
physical id : 0
siblings : 2
core id : 1
cpu cores : 2
apicid : 1
initial apicid : 1
fpu : yes
fpu_exception : yes
cpuid level : 5
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt hw_pstate npt lbrv svm_lock nrip_save
bogomips : 4598.56
TLB size : 1024 4K pages
clflush size : 64
cache_alignment : 64
address sizes : 48 bits physical, 48 bits virtual
power management: ts ttp tm stc 100mhzsteps hwpstate
Memory: 4k page, physical 4048252k(135508k free), swap 4192252k(4160316k free)
vm_info: OpenJDK 64-Bit Server VM (24.51-b03) for linux-amd64 JRE (1.7.0_55-b14), built on Apr 17 2014 20:08:07 by "buildd" with gcc 4.8.2
time: Tue Jun 24 15:42:32 2014
elapsed time: 1571 seconds