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:
1587:
1588:
1589:
1590:
1591:
1592:
1593:
1594:
1595:
1596:
1597:
1598:
1599:
1600:
1601:
1602:
1603:
1604:
1605:
1606:
1607:
1608:
1609:
1610:
1611:
1612:
1613:
1614:
1615:
1616:
1617:
1618:
1619:
1620:
1621:
1622:
1623:
1624:
1625:
1626:
1627:
1628:
1629:
1630:
1631:
1632:
1633:
1634:
1635:
1636:
1637:
1638:
1639:
1640:
1641:
1642:
1643:
1644:
1645:
1646:
1647:
1648:
1649:
1650:
1651:
1652:
1653:
1654:
1655:
1656:
1657:
1658:
1659:
1660:
1661:
1662:
1663:
1664:
1665:
1666:
1667:
1668:
1669:
1670:
1671:
1672:
1673:
1674:
1675:
1676:
1677:
1678:
1679:
1680:
1681:
1682:
1683:
1684:
1685:
1686:
1687:
1688:
1689:
1690:
1691:
1692:
1693:
1694:
1695:
1696:
1697:
1698:
1699:
1700:
1701:
1702:
1703:
1704:
1705:
1706:
1707:
1708:
1709:
1710:
1711:
1712:
1713:
1714:
1715:
1716:
1717:
1718:
1719:
1720:
1721:
1722:
1723:
1724:
1725:
1726:
1727:
1728:
1729:
1730:
1731:
1732:
1733:
1734:
1735:
1736:
1737:
1738:
1739:
1740:
1741:
1742:
1743:
1744:
1745:
1746:
1747:
1748:
1749:
1750:
1751:
1752:
1753:
1754:
1755:
1756:
1757:
1758:
1759:
1760:
1761:
1762:
1763:
1764:
1765:
1766:
1767:
1768:
1769:
1770:
1771:
1772:
1773:
1774:
1775:
1776:
1777:
1778:
1779:
1780:
1781:
1782:
1783:
1784:
1785:
1786:
1787:
1788:
1789:
1790:
1791:
1792:
1793:
1794:
1795:
1796:
1797:
1798:
1799:
1800:
1801:
1802:
1803:
1804:
1805:
1806:
1807:
1808:
1809:
1810:
1811:
1812:
1813:
1814:
1815:
1816:
1817:
1818:
1819:
1820:
1821:
1822:
1823:
1824:
1825:
1826:
1827:
1828:
1829:
1830:
1831:
1832:
1833:
1834:
1835:
1836:
1837:
1838:
1839:
1840:
1841:
1842:
1843:
1844:
1845:
1846:
1847:
1848:
1849:
1850:
1851:
1852:
1853:
1854:
1855:
1856:
1857:
1858:
1859:
1860:
1861:
1862:
1863:
1864:
1865:
1866:
1867:
1868:
1869:
1870:
1871:
1872:
1873:
1874:
1875:
1876:
1877:
1878:
1879:
1880:
1881:
1882:
1883:
1884:
1885:
1886:
1887:
1888:
1889:
1890:
1891:
1892:
1893:
1894:
1895:
1896:
1897:
1898:
1899:
1900:
1901:
1902:
1903:
1904:
1905:
1906:
1907:
1908:
1909:
1910:
1911:
1912:
1913:
1914:
1915:
1916:
1917:
1918:
1919:
1920:
1921:
1922:
1923:
1924:
1925:
1926:
1927:
1928:
1929:
1930:
1931:
1932:
1933:
1934:
1935:
1936:
1937:
1938:
1939:
1940:
1941:
1942:
1943:
1944:
1945:
1946:
1947:
1948:
1949:
1950:
1951:
1952:
1953:
1954:
1955:
1956:
1957:
1958:
1959:
1960:
1961:
1962:
1963:
1964:
1965:
1966:
1967:
1968:
1969:
1970:
1971:
1972:
1973:
1974:
1975:
1976:
1977:
1978:
1979:
1980:
1981:
1982:
1983:
1984:
1985:
1986:
1987:
1988:
1989:
1990:
1991:
1992:
1993:
1994:
1995:
1996:
1997:
1998:
1999:
2000:
2001:
2002:
2003:
2004:
2005:
2006:
2007:
2008:
2009:
2010:
2011:
2012:
2013:
2014:
2015:
2016:
2017:
2018:
2019:
2020:
2021:
2022:
2023:
2024:
2025:
2026:
2027:
2028:
2029:
2030:
2031:
2032:
2033:
2034:
2035:
2036:
2037:
2038:
2039:
2040:
2041:
2042:
2043:
2044:
2045:
2046:
2047:
2048:
2049:
2050:
2051:
2052:
2053:
2054:
2055:
2056:
2057:
2058:
2059:
2060:
2061:
2062:
2063:
2064:
2065:
2066:
2067:
2068:
2069:
2070:
2071:
2072:
2073:
2074:
2075:
2076:
2077:
2078:
2079:
2080:
2081:
2082:
2083:
2084:
2085:
2086:
2087:
2088:
2089:
2090:
2091:
2092:
2093:
2094:
2095:
2096:
2097:
2098:
2099:
2100:
2101:
2102:
2103:
2104:
2105:
2106:
2107:
2108:
2109:
2110:
2111:
2112:
2113:
2114:
2115:
2116:
2117:
2118:
2119:
2120:
2121:
2122:
2123:
2124:
2125:
2126:
2127:
2128:
2129:
2130:
2131:
2132:
2133:
2134:
2135:
2136:
2137:
2138:
2139:
2140:
2141:
2142:
2143:
2144:
2145:
2146:
2147:
2148:
2149:
2150:
2151:
2152:
2153:
2154:
2155:
2156:
2157:
2158:
2159:
2160:
2161:
2162:
2163:
2164:
2165:
2166:
2167:
2168:
2169:
2170:
2171:
2172:
2173:
2174:
2175:
2176:
2177:
2178:
2179:
2180:
2181:
2182:
2183:
2184:
2185:
2186:
2187:
2188:
2189:
2190:
2191:
2192:
2193:
2194:
2195:
2196:
2197:
2198:
2199:
2200:
2201:
2202:
2203:
2204:
2205:
2206:
2207:
2208:
2209:
2210:
2211:
2212:
2213:
2214:
2215:
2216:
2217:
2218:
2219:
2220:
2221:
2222:
2223:
2224:
2225:
2226:
2227:
2228:
2229:
2230:
2231:
2232:
2233:
2234:
2235:
2236:
2237:
2238:
2239:
2240:
2241:
2242:
2243:
2244:
2245:
2246:
2247:
2248:
2249:
2250:
2251:
2252:
2253:
2254:
2255:
2256:
2257:
2258:
2259:
2260:
2261:
2262:
2263:
2264:
2265:
2266:
2267:
2268:
2269:
2270:
2271:
2272:
2273:
2274:
2275:
2276:
2277:
2278:
2279:
2280:
2281:
2282:
2283:
2284:
2285:
2286:
2287:
2288:
2289:
2290:
2291:
2292:
2293:
2294:
2295:
2296:
2297:
2298:
2299:
2300:
2301:
2302:
2303:
2304:
2305:
2306:
2307:
2308:
2309:
2310:
2311:
2312:
2313:
2314:
2315:
2316:
2317:
2318:
2319:
2320:
2321:
2322:
2323:
2324:
2325:
2326:
2327:
2328:
2329:
2330:
2331:
2332:
2333:
2334:
2335:
2336:
2337:
2338:
2339:
2340:
2341:
2342:
2343:
2344:
2345:
2346:
2347:
2348:
2349:
2350:
2351:
2352:
2353:
2354:
2355:
2356:
2357:
2358:
2359:
2360:
2361:
2362:
2363:
2364:
2365:
2366:
2367:
2368:
2369:
2370:
2371:
2372:
2373:
2374:
2375:
2376:
2377:
2378:
2379:
2380:
2381:
2382:
2383:
2384:
2385:
2386:
2387:
2388:
2389:
2390:
2391:
2392:
2393:
2394:
2395:
2396:
2397:
2398:
2399:
2400:
2401:
2402:
2403:
2404:
2405:
2406:
2407:
2408:
2409:
2410:
2411:
2412:
2413:
2414:
2415:
2416:
2417:
2418:
2419:
2420:
2421:
2422:
2423:
2424:
2425:
2426:
2427:
2428:
2429:
2430:
2431:
2432:
2433:
2434:
2435:
2436:
2437:
2438:
2439:
2440:
2441:
2442:
2443:
2444:
2445:
2446:
2447:
2448:
2449:
2450:
2451:
2452:
2453:
2454:
2455:
2456:
2457:
2458:
2459:
2460:
2461:
2462:
2463:
2464:
2465:
2466:
2467:
2468:
2469:
2470:
2471:
2472:
2473:
2474:
2475:
2476:
2477:
2478:
2479:
2480:
2481:
2482:
2483:
2484:
2485:
2486:
2487:
2488:
2489:
2490:
2491:
2492:
2493:
2494:
2495:
2496:
2497:
2498:
2499:
2500:
2501:
2502:
2503:
2504:
2505:
2506:
2507:
2508:
2509:
2510:
2511:
2512:
2513:
2514:
2515:
2516:
2517:
2518:
2519:
2520:
2521:
2522:
2523:
2524:
2525:
2526:
2527:
2528:
2529:
2530:
2531:
2532:
2533:
2534:
2535:
2536:
2537:
2538:
2539:
2540:
2541:
2542:
2543:
2544:
2545:
2546:
2547:
2548:
2549:
2550:
2551:
2552:
2553:
2554:
2555:
2556:
2557:
2558:
2559:
2560:
2561:
2562:
2563:
2564:
2565:
2566:
2567:
2568:
2569:
2570:
2571:
2572:
2573:
2574:
2575:
2576:
2577:
2578:
2579:
2580:
2581:
2582:
2583:
2584:
2585:
2586:
2587:
2588:
2589:
2590:
2591:
2592:
2593:
2594:
2595:
2596:
2597:
2598:
2599:
2600:
2601:
2602:
2603:
2604:
2605:
2606:
2607:
2608:
2609:
2610:
2611:
2612:
2613:
2614:
2615:
2616:
2617:
2618:
2619:
2620:
2621:
2622:
2623:
2624:
2625:
2626:
2627:
2628:
2629:
2630:
2631:
2632:
2633:
2634:
2635:
2636:
2637:
2638:
2639:
2640:
2641:
2642:
2643:
2644:
2645:
2646:
2647:
2648:
2649:
2650:
2651:
2652:
2653:
2654:
2655:
2656:
2657:
2658:
2659:
2660:
2661:
2662:
2663:
2664:
2665:
2666:
2667:
2668:
2669:
2670:
2671:
2672:
2673:
2674:
2675:
2676:
2677:
2678:
2679:
2680:
2681:
2682:
2683:
2684:
2685:
2686:
2687:
2688:
2689:
2690:
2691:
2692:
2693:
2694:
2695:
2696:
2697:
2698:
2699:
2700:
2701:
2702:
2703:
2704:
2705:
2706:
2707:
2708:
2709:
2710:
2711:
2712:
2713:
2714:
2715:
2716:
2717:
2718:
2719:
2720:
2721:
2722:
2723:
2724:
2725:
2726:
2727:
2728:
2729:
2730:
2731:
2732:
2733:
2734:
2735:
2736:
2737:
2738:
2739:
2740:
2741:
2742:
2743:
2744:
2745:
2746:
2747:
2748:
2749:
2750:
2751:
2752:
2753:
2754:
2755:
2756:
2757:
2758:
2759:
2760:
2761:
2762:
2763:
2764:
2765:
2766:
2767:
2768:
2769:
2770:
2771:
2772:
2773:
2774:
2775:
2776:
2777:
2778:
2779:
2780:
2781:
2782:
2783:
2784:
2785:
2786:
2787:
2788:
2789:
2790:
2791:
2792:
2793:
2794:
2795:
2796:
2797:
2798:
2799:
2800:
2801:
2802:
2803:
2804:
2805:
2806:
2807:
2808:
2809:
2810:
2811:
2812:
2813:
2814:
2815:
2816:
2817:
2818:
2819:
2820:
2821:
2822:
2823:
2824:
2825:
2826:
|
" codeBody "
Rock Mancuso
(geen onderwerp)
Rob Mancuso Wed, 14 Juli, 2010 bij 10:25 AM
Aan: Rots Mancuso
Datum/Tijd: 2010-07-14 10:23: 08 -0500
OS Versie: 10.6.4 (Bouwstijl 10F569)
Architectuur: x86_64
De Versie van het rapport: 6
Bevel: InDesign
Weg: /Applications/Adobe Creative Suite 5/Adobe InDesign
CS5/Adobe InDesign CS5.app/Contents/MacOS/Adobe InDesign CS5
Versie: 7.0.0.35 5 (7000)
Ouder: launchd [81]
PID: 233
Gebeurtenis: hang
Duur: 3.32s (de bemonstering begon na 2 seconden)
Stappen: 13 (100ms bemonsteringsinterval)
Pageins: 0
Pageouts: 0
Proces: Adobe InDesign CS5 [233]
Weg: /Applications/Adobe Creative Suite 5/Adobe InDesign
CS5/Adobe InDesign CS5.app/Contents/MacOS/Adobe InDesign CS5
UID: 501
Proces: De Brug van de adobe CS5 [189]
Weg: /Applications/Adobe Creative Suite 5/Adobe Brug
CS5/Adobe de Brug van de Brug CS5.app/Contents/MacOS/Adobe CS5
UID: 501
Proces: AdobeCrashDaemon [236]
Weg: /Applications/Adobe Creative Suite 5/Adobe InDesign
CS5/Adobe InDesign
CS5.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/Resources/AdobeCrashDaemon.app/Contents/MacOS/AdobeCrashDaemon
UID: 501
Proces: AdobeCrashDaemon [193]
Weg: /Applications/Adobe Creative Suite 5/Adobe Brug
CS5/Adobe Brug
CS5.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/Resources/AdobeCrashDaemon.app/Contents/MacOS/AdobeCrashDaemon
UID: 501
Proces: AGAdminService [52]
Weg: /usr/sbin/AGAdminService
UID: 0
Draad e4577a8 DispatchQueue 1
De stapel van de gebruiker:
begin 13 + 52 (in AGAdminService) [0x100001b24]
leiding 13 + 489 (in AGAdminService) [0x100001d2f]
13 - [NSRunLoop (NSRunLoop) runUntilDate:] + 78 (in Stichting)
[0x7fff87e2e48e]
13 - [NSRunLoop (NSRunLoop) runMode: beforeDate:] + 270 (in
Stichting) [0x7fff87de2a18]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad e5e2b7c DispatchQueue 2
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
_pthread_wqthread 13 + 353 (in libSystem.B.dylib) [0x7fff84f45088]
13 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib)
[0x7fff84f4575e]
_dispatch_queue_invoke 13 + 185 (in libSystem.B.dylib)
[0x7fff84f45c34]
13 kevent + 10 (in libSystem.B.dylib) [0x7fff84f4408a]
De stapel van de pit:
13 kevent + 97 [0x4701de]
Draad e533000
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
__NSThread__main 13 + 1429 (in Stichting) [0x7fff87da7e8d]
13 - [AGPacketCaptureService AGPCapThread:] + 381 (in
AGAdminService) [0x100006232]
13 - [NSRunLoop (NSRunLoop) runMode: beforeDate:] + 270 (in
Stichting) [0x7fff87de2a18]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad e536000
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
__NSThread__main 13 + 1429 (in Stichting) [0x7fff87da7e8d]
13 - [(Privé) AGUtilityService serviceThread:] + 383 (in
AGAdminService) [0x10000a630]
13 - [NSRunLoop (NSRunLoop) runMode: beforeDate:] + 270 (in
Stichting) [0x7fff87de2a18]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad e5363d4
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
__NSThread__main 13 + 1429 (in Stichting) [0x7fff87da7e8d]
13 - [AGLogFactory factoryThread:] + 383 (in AGAdminService)
[0x100003889]
13 - [NSRunLoop (NSRunLoop) runMode: beforeDate:] + 270 (in
Stichting) [0x7fff87de2a18]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad e5367a8
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
__NSThread__main 13 + 1429 (in Stichting) [0x7fff87da7e8d]
13 kevent + 10 (in libSystem.B.dylib) [0x7fff84f4408a]
De stapel van de pit:
13 kevent + 97 [0x4701de]
Draad e5e23d4
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
__NSThread__main 13 + 1429 (in Stichting) [0x7fff87da7e8d]
13 - [in werking gestelde NSConnection] + 112 (in Stichting) [0x7fff87e4fc93]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Binaire Beelden:
0x100000000 - 0x100019ff7 AGAdminService??? (???)
<6F13CC91-E8B9-4BC6-FA32-626C72B16E4E> /usr/sbin/AGAdminService
0x7fff8199b000 - 0x7fff81b10ff7 com.apple.CoreFoundation
6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
0x7fff87d97000 - 0x7fff88018fef com.apple. Stichting 6.6.3
(751.29)
/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
Proces: De Agent van het Basisstation van de luchthaven [108]
Weg: Het Basisstation van /System/Library/CoreServices/AirPort
Agent.app/Contents/MacOS/AirPort De Agent van het Basisstation
UID: 501
Draad e398000
De stapel van de gebruiker:
13??? (in de Agent van het Basisstation van de Luchthaven + 5692) [0x10000163c]
13 NSApplicationMain + 364 (in AppKit) [0x7fff840fd5f8]
13 - [in werking gestelde NSApplication] + 395 (in AppKit) [0x7fff841048d3]
13 - [NSApplication
nextEventMatchingMask: untilDate: inMode: dequeue:] + 155 (in AppKit)
[0x7fff8413ebed]
13 _DPSNextEvent + 708 (in AppKit) [0x7fff8413f29e]
13 BlockUntilNextEventMatchingListInMode + 59 (in
HIToolbox) [0x7fff80cb75d8]
13 ReceiveNextEventCommon + 310 (in HIToolbox) [0x7fff80cb771f]
13 RunCurrentEventLoopInMode + 333 (in HIToolbox)
[0x7fff80cb791a]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation)
[0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation)
[0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib)
[0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad e536b7c DispatchQueue 2
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
_pthread_wqthread 13 + 353 (in libSystem.B.dylib) [0x7fff84f45088]
13 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib)
[0x7fff84f4575e]
_dispatch_queue_invoke 13 + 185 (in libSystem.B.dylib)
[0x7fff84f45c34]
13 kevent + 10 (in libSystem.B.dylib) [0x7fff84f4408a]
De stapel van de pit:
13 kevent + 97 [0x4701de]
Draad ec9d3d4
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13 select$DARWIN_EXTSN + 10 (in libSystem.B.dylib) [0x7fff84f6edce]
De stapel van de pit:
slaap 13 + 52 [0x486bac]
Binaire Beelden:
0x100000000 - 0x100027fff
com.apple.AirPortBaseStationAgent 1.5.5 (155.2)
<00010203-0405-0607-0809-0A0B0C0D0E0F>
Het Basisstation van /System/Library/CoreServices/AirPort
Agent.app/Contents/MacOS/AirPort De Agent van het Basisstation
0x7fff80c89000 - 0x7fff80f87fe7 com.apple.HIToolbox 1.6.3
(???)
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff8199b000 - 0x7fff81b10ff7 com.apple.CoreFoundation
6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff840fb000 - 0x7fff84af1fff com.apple.AppKit 6.6.6
(1038.29) <7BDD335D-5425-0354-5AD6-41C4F1B4A2F4>
/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
Proces: autofsd [48]
Weg: /usr/libexec/autofsd
UID: 0
Draad e3987a8 DispatchQueue 1
De stapel van de gebruiker:
13??? (in autofsd + 5340) [0x1000014dc]
13??? (in autofsd + 6461) [0x10000193d]
13 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff819e65d6]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad e533b7c DispatchQueue 2
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
_pthread_wqthread 13 + 353 (in libSystem.B.dylib) [0x7fff84f45088]
13 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib)
[0x7fff84f4575e]
_dispatch_queue_invoke 13 + 185 (in libSystem.B.dylib)
[0x7fff84f45c34]
13 kevent + 10 (in libSystem.B.dylib) [0x7fff84f4408a]
De stapel van de pit:
13 kevent + 97 [0x4701de]
Binaire Beelden:
0x100000000 - 0x100001ff7 autofsd??? (???)
/usr/libexec/autofsd
0x7fff8199b000 - 0x7fff81b10ff7 com.apple.CoreFoundation
6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
Proces: blued [16]
Weg: /usr/sbin/blued
UID: 0
Draad d982b7c DispatchQueue 1
De stapel van de gebruiker:
13??? (in blued + 6468) [0x100001944]
13??? (in blued + 154202) [0x100025a5a]
13 - [in werking gestelde NSRunLoop (NSRunLoop)] + 77 (in Stichting) [0x7fff87de28f7]
13 - [NSRunLoop (NSRunLoop) runMode: beforeDate:] + 270 (in
Stichting) [0x7fff87de2a18]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad d9d07a8 DispatchQueue 2
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
_pthread_wqthread 13 + 353 (in libSystem.B.dylib) [0x7fff84f45088]
13 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib)
[0x7fff84f4575e]
_dispatch_queue_invoke 13 + 185 (in libSystem.B.dylib)
[0x7fff84f45c34]
13 kevent + 10 (in libSystem.B.dylib) [0x7fff84f4408a]
De stapel van de pit:
13 kevent + 97 [0x4701de]
Draad df253d4
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13 select$DARWIN_EXTSN + 10 (in libSystem.B.dylib) [0x7fff84f6edce]
De stapel van de pit:
slaap 13 + 52 [0x486bac]
Binaire Beelden:
0x100000000 - blued 0x100048fe7??? (???)
<068B2E13-FC01-B62A-805A-578C75BCFA12> /usr/sbin/blued
0x7fff8199b000 - 0x7fff81b10ff7 com.apple.CoreFoundation
6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
0x7fff87d97000 - 0x7fff88018fef com.apple. Stichting 6.6.3
(751.29)
/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
Proces: configd [14]
Weg: /usr/libexec/configd
UID: 0
Draad d31b7a8
De stapel van de gebruiker:
begin 13 + 52 (in configd) [0x100000cf0]
leiding 13 + 2051 (in configd) [0x100001506]
server_loop 13 + 72 (in configd) [0x100001d5c]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad d36fb7c DispatchQueue 2
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
_pthread_wqthread 13 + 353 (in libSystem.B.dylib) [0x7fff84f45088]
13 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib)
[0x7fff84f4575e]
_dispatch_queue_invoke 13 + 185 (in libSystem.B.dylib)
[0x7fff84f45c34]
13 kevent + 10 (in libSystem.B.dylib) [0x7fff84f4408a]
De stapel van de pit:
13 kevent + 97 [0x4701de]
Draad d319000
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
plugin_exec 13 + 1440 (in configd) [0x1000034c3]
13 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff819e65d6]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad d9667a8
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13 _io_pm_force_active_settings + 2266 (in PowerManagement)
[0x10040f968]
13 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff819e65d6]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad d9827a8
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13 select$DARWIN_EXTSN + 10 (in libSystem.B.dylib) [0x7fff84f6edce]
De stapel van de pit:
slaap 13 + 52 [0x486bac]
Draad d9d13d4
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
pppcntl_run_thread 13 + 1595 (in PPPController) [0x1004be90d]
13 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff819e65d6]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad eced000
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
__workq_kernreturn 13 + 10 (in libSystem.B.dylib) [0x7fff84f44eaa]
De stapel van de pit:
bsdthread_create 13 + 1313 [0x4c9daa]
Binaire Beelden:
0x100000000 - 0x100026ff7 configd??? (???)
<7C2349FB-D2F6-3CA3-90CE-11EF1BE1CF1D> /usr/libexec/configd
0x10040c000 - 0x10041dfff
com.apple.SystemConfiguration.PowerManagement 160.0.0 (160.0.0)
<691A8193-3BE4-69C5-71D0-6D4BC738998D>
/System/Library/SystemConfiguration/PowerManagement.bundle/Contents/MacOS/PowerManagement
0x1004ac000 - 0x1004d5fff
com.apple.SystemConfiguration.PPPController 1.5 (1.5)
<900FD5A8-2F19-6919-1AF2-71C70F36E834>
/System/Library/SystemConfiguration/PPPController.bundle/Contents/MacOS/PPPController
0x7fff8199b000 - 0x7fff81b10ff7 com.apple.CoreFoundation
6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
Proces: coreaudiod [75]
Weg: /usr/sbin/coreaudiod
UID: 202
Draad ebd0000 DispatchQueue 1
De stapel van de gebruiker:
13??? (in coreaudiod + 2964) [0x100000b94]
13??? (in coreaudiod + 26320) [0x1000066d0]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad ec60b7c DispatchQueue 2
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
_pthread_wqthread 13 + 353 (in libSystem.B.dylib) [0x7fff84f45088]
13 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib)
[0x7fff84f4575e]
_dispatch_queue_invoke 13 + 185 (in libSystem.B.dylib)
[0x7fff84f45c34]
13 kevent + 10 (in libSystem.B.dylib) [0x7fff84f4408a]
De stapel van de pit:
13 kevent + 97 [0x4701de]
Draad ec60000
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13 CAPThread:: Ingang (CAPThread*) + 125 (in CoreAudio) [0x7fff830d1af5]
13 HALRunLoop:: OwnThread (void*) + 152 (in CoreAudio) [0x7fff830e4af6]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad f01b3d4
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
__workq_kernreturn 13 + 10 (in libSystem.B.dylib) [0x7fff84f44eaa]
De stapel van de pit:
bsdthread_create 13 + 1313 [0x4c9daa]
Binaire Beelden:
0x100000000 - 0x10001fff7 coreaudiod??? (???)
<9A14795C-2B28-130F-43A3-183AB48F75D8> /usr/sbin/coreaudiod
0x7fff8199b000 - 0x7fff81b10ff7 com.apple.CoreFoundation
6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff830b3000 - 0x7fff83132fef com.apple.audio.CoreAudio
3.2.2 (3.2.2) <243E456E-7A74-BE76-FF18-E589BDCAA785>
/System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
Proces: coreservicesd [59]
Weg: /System/Library/CoreServices/coreservicesd
UID: 0
Draad e640b7c
De stapel van de gebruiker:
13??? (in coreservicesd + 3756) [0x100000eac]
_CoreServicesServerMain 13 + 522 (in CarbonCore) [0x7fff8552417e]
13 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff819e65d6]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad e6407a8 DispatchQueue 2
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
_pthread_wqthread 13 + 353 (in libSystem.B.dylib) [0x7fff84f45088]
13 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib)
[0x7fff84f4575e]
_dispatch_queue_invoke 13 + 185 (in libSystem.B.dylib)
[0x7fff84f45c34]
13 kevent + 10 (in libSystem.B.dylib) [0x7fff84f4408a]
De stapel van de pit:
13 kevent + 97 [0x4701de]
Draad e6537a8
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13 gelezen + 10 (in libSystem.B.dylib) [0x7fff84f358e6]
De stapel van de pit:
13 lo64_unix_scall + 77 [0x29f43d]
13 unix_syscall64 + 617 [0x4edaf8]
read_nocancel 13 + 158 [0x495760]
13 schrijven + 312 [0x494fe4]
get_pathbuff 13 + 3054 [0x3039e7]
tsleep 13 + 105 [0x486de7]
activering 13 + 786 [0x4869c0]
thread_block 13 + 33 [0x227184]
thread_block_reason 13 + 331 [0x2270f6]
thread_dispatch 13 + 1966 [0x226e57]
machine_switch_context 13 + 753 [0x2a6a27]
Draad e653b7c
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
fmodWatchConsumer 13 + 347 (in CarbonCore) [0x7fff854d812a]
__semwait_signal 13 + 10 (in libSystem.B.dylib) [0x7fff84f65eb6]
De stapel van de pit:
semaphore_wait_continue 13 + 0 [0x22a270]
Draad f1dd000
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
__workq_kernreturn 13 + 10 (in libSystem.B.dylib) [0x7fff84f44eaa]
De stapel van de pit:
bsdthread_create 13 + 1313 [0x4c9daa]
Binaire Beelden:
0x100000000 - 0x100000fff coreservicesd??? (???)
<289C9480-7A33-5F54-9FB8-47EC274E2B8B>
/System/Library/CoreServices/coreservicesd
0x7fff8199b000 - 0x7fff81b10ff7 com.apple.CoreFoundation
6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
0x7fff85474000 - 0x7fff857a7fe7
com.apple.CoreServices.CarbonCore 861.13 (861.13)
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
Proces: CS5ServiceManager [137]
Weg: /Library/Application
Steun/Adobe/CS5ServiceManager/CS5ServiceManager.app/Contents/MacOS/CS5ServiceManager
UID: 501
Proces: cvmsServ [65]
Weg:
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/cvmsServ
UID: 0
Draad e6533d4 DispatchQueue 1
De stapel van de gebruiker:
13??? (in cvmsServ + 4100) [0x100001004]
13??? (in cvmsServ + 23081) [0x100005a29]
mach_msg_server 13 + 539 (in libSystem.B.dylib) [0x7fff84fa7bfe]
mach_msg_overwrite_trap 13 + 10 (in libSystem.B.dylib)
[0x7fff84f2b306]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Binaire Beelden:
0x100000000 - 0x100008fff cvmsServ??? (???)
<9CF80EF0-5735-4774-ED76-77309056C1DD>
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/cvmsServ
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
Proces: DirectoryService [11]
Weg: /usr/sbin/DirectoryService
UID: 0
Draad d370000 DispatchQueue -1599293712
De stapel van de gebruiker:
begin 13 + 52 (in DirectoryService) [0x10000d6f0]
leiding 13 + 3086 (in DirectoryService) [0x10000e306]
13 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff819e65d6]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad d9ae7a8 DispatchQueue -757803839
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
_pthread_wqthread 13 + 353 (in libSystem.B.dylib) [0x7fff84f45088]
13 _dispatch_worker_thread2 + 239 (in libSystem.B.dylib)
[0x7fff84f45751]
_dispatch_call_block_and_release 13 + 15 (in
libSystem.B.dylib) [0x7fff84f671b0]
syscall 13 + 10 (in libSystem.B.dylib) [0x7fff84f677ae]
De stapel van de pit:
slaap 13 + 52 [0x486bac]
Draad d9c8b7c DispatchQueue -437456659
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
_pthread_wqthread 13 + 353 (in libSystem.B.dylib) [0x7fff84f45088]
13 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib)
[0x7fff84f4575e]
_dispatch_queue_invoke 13 + 185 (in libSystem.B.dylib)
[0x7fff84f45c34]
13 kevent + 10 (in libSystem.B.dylib) [0x7fff84f4408a]
De stapel van de pit:
13 kevent + 97 [0x4701de]
Draad d9ae000
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13 DSLThread:: _RunWrapper (void*) + 67 (in
DirectoryServiceCore) [0x10017834b]
13 DSCThread:: Looppas () + 36 (in DirectoryServiceCore) [0x1001780ac]
13 CPluginRunLoopThread:: ThreadMain () + 150 (in
DirectoryService) [0x10001cea0]
13 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff819e65d6]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation)
[0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib)
[0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad d9ae3d4
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
__workq_kernreturn 13 + 10 (in libSystem.B.dylib) [0x7fff84f44eaa]
De stapel van de pit:
bsdthread_create 13 + 1313 [0x4c9daa]
Draad 1be2e000
De stapel van de gebruiker:
De stapel van de pit:
bsdthread_create 13 + 1477 [0x4c9e4e]
Binaire Beelden:
0x100000000 - 0x100120fef DirectoryService??? (???)
/usr/sbin/DirectoryService
0x100170000 - 0x100181fff
com.apple.DirectoryServiceCore.Framework 3.6 (621.3)
<9A948447-49A0-61FC-02DE-9837C3D46853>
/System/Library/PrivateFrameworks/DirectoryServiceCore.framework/Versions/A/DirectoryServiceCore
0x7fff8199b000 - 0x7fff81b10ff7 com.apple.CoreFoundation
6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
Proces: diskarbitrationd [13]
Weg: /usr/sbin/diskarbitrationd
UID: 0
Draad d3707a8 DispatchQueue 1
De stapel van de gebruiker:
13??? (in diskarbitrationd + 4064) [0x100000fe0]
13??? (in diskarbitrationd + 32876) [0x10000806c]
13 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff819e65d6]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad d494000 DispatchQueue 2
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
_pthread_wqthread 13 + 353 (in libSystem.B.dylib) [0x7fff84f45088]
13 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib)
[0x7fff84f4575e]
_dispatch_queue_invoke 13 + 185 (in libSystem.B.dylib)
[0x7fff84f45c34]
13 kevent + 10 (in libSystem.B.dylib) [0x7fff84f4408a]
De stapel van de pit:
13 kevent + 97 [0x4701de]
Binaire Beelden:
0x100000000 - 0x10001bfef diskarbitrationd??? (???)
/usr/sbin/diskarbitrationd
0x7fff8199b000 - 0x7fff81b10ff7 com.apple.CoreFoundation
6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
Proces: distnoted [17]
Weg: /usr/sbin/distnoted
UID: 1
Draad d9823d4
De stapel van de gebruiker:
13??? (in distnoted + 3620) [0x100000e24]
13??? (in distnoted + 3717) [0x100000e85]
13 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff819e65d6]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad d982000 DispatchQueue 2
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
_pthread_wqthread 13 + 353 (in libSystem.B.dylib) [0x7fff84f45088]
13 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib)
[0x7fff84f4575e]
_dispatch_queue_invoke 13 + 185 (in libSystem.B.dylib)
[0x7fff84f45c34]
13 kevent + 10 (in libSystem.B.dylib) [0x7fff84f4408a]
De stapel van de pit:
13 kevent + 97 [0x4701de]
Draad d9d1b7c
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
__workq_kernreturn 13 + 10 (in libSystem.B.dylib) [0x7fff84f44eaa]
De stapel van de pit:
bsdthread_create 13 + 1313 [0x4c9daa]
Binaire Beelden:
0x100000000 - 0x100000fff distnoted??? (???)
/usr/sbin/distnoted
0x7fff8199b000 - 0x7fff81b10ff7 com.apple.CoreFoundation
6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
Proces: dniregsvr [51]
Weg: /usr/sbin/dniregsvr
UID: 0
Draad e457b7c DispatchQueue 1
De stapel van de gebruiker:
begin 13 + 33 (in dniregsvr) [0x100001411]
_start 13 + 224 (in dniregsvr) [0x1000014f2]
leiding 13 + 930 (in dniregsvr) [0x100008461]
13 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff819e65d6]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad e518b7c
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13 select$DARWIN_EXTSN + 10 (in libSystem.B.dylib) [0x7fff84f6edce]
De stapel van de pit:
slaap 13 + 52 [0x486bac]
Binaire Beelden:
0x100000000 - 0x100010fff dniregsvr??? (???)
/usr/sbin/dniregsvr
0x7fff8199b000 - 0x7fff81b10ff7 com.apple.CoreFoundation
6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
Proces: Dok [85]
Weg: /System/Library/CoreServices/Dock.app/Contents/MacOS/Dock
UID: 501
Draad e949000
De stapel van de gebruiker:
13??? (in Dok + 20476) [0x100004ffc]
13??? (in Dok + 21572) [0x100005444]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 5201 (in CoreFoundation) [0x7fff819e8171]
mshPerform 13 + 11 (in HIServices) [0x7fff82b4f301]
13??? (in Dok + 92564) [0x100016994]
13??? (in Dok + 93154) [0x100016be2]
13??? (in Dok + 141013) [0x1000226d5]
13??? (in Dok + 519149) [0x10007ebed]
13??? (in Dok + 382084) [0x10005d484]
13??? (in Dok + 386028) [0x10005e3ec]
13??? (in Dok + 387718) [0x10005ea86]
13 _HandlePopUpMenuSelection7 + 665 (in
HIToolbox) [0x7fff80e12dce]
13 PopUpMenuSelectCore (MenuData*, Punt,
dubbel, Punt, niet ondertekend kort, niet ondertekend niet ondertekend int., Rect const*,
kort, niet ondertekend int., Rect die const*, Rect const*, const* __CFString,
OpaqueMenuRef **, niet ondertekende short*) + 1702 (in HIToolbox)
[0x7fff80e12ac9]
10 TrackMenuCommon (MenuSelectData&,
niet ondertekende char*) + 3355 (in HIToolbox) [0x7fff80ceea48]
10
IsUserStillTracking (MenuSelectData*, niet ondertekende char*) + 175 (in
HIToolbox) [0x7fff80d01db8]
10 ReceiveNextEventCommon + 310
(in HIToolbox) [0x7fff80cb771f]
10 RunCurrentEventLoopInMode +
333 (in HIToolbox) [0x7fff80cb791a]
10 CFRunLoopRunSpecific + 575
(in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 10 + 1698 (in
CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 10 + 10 (in
libSystem.B.dylib) [0x7fff84f2b2fa]
3 TrackMenuCommon (MenuSelectData&,
niet ondertekende char*) + 3460 (in HIToolbox) [0x7fff80ceeab1]
2
SelectItemAndRestoreAllMenuBits (MenuSelectData&) + 839 (in HIToolbox)
[0x7fff80d0771c]
2 RunCurrentEventLoopInMode + 333
(in HIToolbox) [0x7fff80cb791a]
2 CFRunLoopRunSpecific + 575 (in
CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 2 + 1698 (in
CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 2 + 10 (in
libSystem.B.dylib) [0x7fff84f2b2fa]
1
SelectItemAndRestoreAllMenuBits (MenuSelectData&) + 474 (in HIToolbox)
[0x7fff80d075af]
1 FlashFeedback (MenuSelectData*) +
131 (in HIToolbox) [0x7fff80d07800]
1 HIView:: SimulateClick (plotseling,
niet ondertekend int., short*) + 167 (in HIToolbox) [0x7fff80d0790b]
1
SendEventToEventTargetWithOptions + 51 (in HIToolbox) [0x7fff80c8fd57]
1
SendEventToEventTargetInternal (OpaqueEventRef*, OpaqueEventTargetRef*,
HandlerCallRec*) + 395 (in HIToolbox) [0x7fff80c8fee6]
1
DispatchEventToHandlers (EventTargetRec*, OpaqueEventRef*,
HandlerCallRec*) + 1002 (in HIToolbox) [0x7fff80c90997]
1
HIView:: EventHandler (OpaqueEventHandlerCallRef*, OpaqueEventRef*,
void*) + 1700 (in HIToolbox) [0x7fff80ca1808]
1
HIView:: SimulateClickSelf (kort, niet ondertekend int., short*) + 94 (in
HIToolbox) [0x7fff80d07a24]
1
SendControlSimulateHit (korte, niet ondertekende int. van HIView*, short*) + 150 (in
HIToolbox) [0x7fff80d07b6c]
1
SendEventToEventTargetWithOptions + 51 (in HIToolbox) [0x7fff80c8fd57]
1
SendEventToEventTargetInternal (OpaqueEventRef*, OpaqueEventTargetRef*,
HandlerCallRec*) + 395 (in HIToolbox) [0x7fff80c8fee6]
1
DispatchEventToHandlers (EventTargetRec*, OpaqueEventRef*,
HandlerCallRec*) + 1002 (in HIToolbox) [0x7fff80c90997]
1
HIView:: EventHandler (OpaqueEventHandlerCallRef*, OpaqueEventRef*,
void*) + 1842 (in HIToolbox) [0x7fff80ca1896]
1
HIStandardMenuView:: SimulateHitSelf (kort, niet ondertekend int., short*) + 188
(in HIToolbox) [0x7fff80d07c6e]
1
HIMenuView:: SimulateHitSelf (kort, niet ondertekend int., short*) + 111 (in
HIToolbox) [0x7fff80d07d31]
1
RunCurrentEventLoopInMode + 234 (in HIToolbox) [0x7fff80cb78b7]
1
CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
1
__CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff819e73c2]
1 mach_msg_trap + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad eced7a8 DispatchQueue 2
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
_pthread_wqthread 13 + 353 (in libSystem.B.dylib) [0x7fff84f45088]
13 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib)
[0x7fff84f4575e]
_dispatch_queue_invoke 13 + 185 (in libSystem.B.dylib)
[0x7fff84f45c34]
13 kevent + 10 (in libSystem.B.dylib) [0x7fff84f4408a]
De stapel van de pit:
13 kevent + 97 [0x4701de]
Draad ef5f3d4
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13??? (in Dok + 90843) [0x1000162db]
__semwait_signal 13 + 10 (in libSystem.B.dylib) [0x7fff84f65eb6]
De stapel van de pit:
semaphore_wait_continue 13 + 0 [0x22a270]
Binaire Beelden:
0x100000000 - 0x100172fff com.apple.dock 1.7 (769)
<9AE0ECFC-1D9B-17AE-06E3-1FA9E27E88E4>
/System/Library/CoreServices/Dock.app/Contents/MacOS/Dock
0x7fff80c89000 - 0x7fff80f87fe7 com.apple.HIToolbox 1.6.3
(???)
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff8199b000 - 0x7fff81b10ff7 com.apple.CoreFoundation
6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff82b42000 - 0x7fff82b93fe7 com.apple.HIServices 1.8.0
(???)
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
Proces: dynamic_pager [42]
Weg: /sbin/dynamic_pager
UID: 0
Draad df1a000 DispatchQueue 1
De stapel van de gebruiker:
13??? [0x1000013ec]
13??? [0x1000023eb]
13??? [0x100001cae]
13??? [0x100001a30]
13??? [0x10000198f]
13??? [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Proces: Vinder [87]
Weg: /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
UID: 501
Draad ecab7a8
De stapel van de gebruiker:
13??? (in Vinder + 23680) [0x100005c80]
13??? (in Vinder + 23741) [0x100005cbd]
13 NSApplicationMain + 364 (in AppKit) [0x7fff840fd5f8]
13 - [in werking gestelde NSApplication] + 395 (in AppKit) [0x7fff841048d3]
13 - [NSApplication
nextEventMatchingMask: untilDate: inMode: dequeue:] + 155 (in AppKit)
[0x7fff8413ebed]
13 _DPSNextEvent + 708 (in AppKit) [0x7fff8413f29e]
13 BlockUntilNextEventMatchingListInMode + 59 (in
HIToolbox) [0x7fff80cb75d8]
13 ReceiveNextEventCommon + 310 (in HIToolbox)
[0x7fff80cb771f]
13 RunCurrentEventLoopInMode + 333 (in HIToolbox)
[0x7fff80cb791a]
13 CFRunLoopRunSpecific + 575 (in
CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation)
[0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib)
[0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad d9c8000
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
_pthread_wqthread 13 + 353 (in libSystem.B.dylib) [0x7fff84f45088]
13 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib)
[0x7fff84f4575e]
_dispatch_queue_invoke 13 + 185 (in libSystem.B.dylib)
[0x7fff84f45c34]
13 kevent + 10 (in libSystem.B.dylib) [0x7fff84f4408a]
De stapel van de pit:
13 kevent + 97 [0x4701de]
Draad e9653d4
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
__workq_kernreturn 13 + 10 (in libSystem.B.dylib) [0x7fff84f44eaa]
De stapel van de pit:
bsdthread_create 13 + 1313 [0x4c9daa]
Draad ebd03d4
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13 PrivateMPEntryPoint + 63 (in CarbonCore) [0x7fff8547aea1]
13 TSystemNotificationTask:: SystemNotificationTaskProc (void*)
+ 514 (in DesktopServicesPriv) [0x7fff81def636]
13 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff819e65d6]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad efafb7c
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13 select$DARWIN_EXTSN + 10 (in libSystem.B.dylib) [0x7fff84f6edce]
De stapel van de pit:
slaap 13 + 52 [0x486bac]
Draad 1be593d4
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13??? (in Vinder + 26637) [0x10000680d]
13??? (in Vinder + 26843) [0x1000068db]
13??? (in Vinder + 176658) [0x10002b212]
13??? (in Vinder + 176752) [0x10002b270]
semaphore_timedwait_signal_trap 13 + 10 (in
libSystem.B.dylib) [0x7fff84f2b35a]
De stapel van de pit:
semaphore_wait_continue 13 + 0 [0x22a270]
Draad 1be1e000
De stapel van de gebruiker:
start_wqthread 11 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
__workq_kernreturn 11 + 10 (in libSystem.B.dylib) [0x7fff84f44eaa]
De stapel van de pit:
bsdthread_create 11 + 1313 [0x4c9daa]
Draad f2af7a8
De stapel van de gebruiker:
start_wqthread 10 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
__workq_kernreturn 10 + 10 (in libSystem.B.dylib) [0x7fff84f44eaa]
De stapel van de pit:
bsdthread_create 10 + 1313 [0x4c9daa]
Binaire Beelden:
0x100000000 - 0x1003acff7 com.apple.finder 10.6.5
(10.6.5)
/System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
0x7fff80c89000 - 0x7fff80f87fe7 com.apple.HIToolbox 1.6.3
(???)
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff8199b000 - 0x7fff81b10ff7 com.apple.CoreFoundation
6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff81ded000 - 0x7fff81ed3fe7 com.apple.DesktopServices
1.5.7 (1.5.7) <8A697128-B6CA-E4A8-C200-6520D5A35FBE>
/System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff840fb000 - 0x7fff84af1fff com.apple.AppKit 6.6.6
(1038.29) <7BDD335D-5425-0354-5AD6-41C4F1B4A2F4>
/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
0x7fff85474000 - 0x7fff857a7fe7
com.apple.CoreServices.CarbonCore 861.13 (861.13)
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
Proces: fontd [92]
Weg:
/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Support/fontd
UID: 501
Draad e5137a8
De stapel van de gebruiker:
13??? (in fontd + 16156) [0x100003f1c]
main_handler 13 + 3928 (in libATSServer.dylib) [0x7fff8218e309]
13 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff819e65d6]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad e949b7c DispatchQueue 2
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
_pthread_wqthread 13 + 353 (in libSystem.B.dylib) [0x7fff84f45088]
13 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib)
[0x7fff84f4575e]
_dispatch_queue_invoke 13 + 185 (in libSystem.B.dylib)
[0x7fff84f45c34]
13 kevent + 10 (in libSystem.B.dylib) [0x7fff84f4408a]
De stapel van de pit:
13 kevent + 97 [0x4701de]
Binaire Beelden:
0x100000000 - 0x100003fff fontd??? (???)
<07B33FAE-719B-26CC-060E-E584A1CE846B>
/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Support/fontd
0x7fff8199b000 - 0x7fff81b10ff7 com.apple.CoreFoundation
6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff82104000 - 0x7fff821b9fe7 libATSServer.dylib???
(???)
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libATSServer.dylib
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
Proces: fseventsd [40]
Weg:
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/Support/fseventsd
UID: 0
Draad df1c000
De stapel van de gebruiker:
13??? (in fseventsd + 5508) [0x100001584]
13??? (in fseventsd + 8712) [0x100002208]
mach_msg_server 13 + 597 (in libSystem.B.dylib) [0x7fff84fa7c38]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad e6ad3d4 DispatchQueue 2
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
_pthread_wqthread 13 + 353 (in libSystem.B.dylib) [0x7fff84f45088]
13 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib)
[0x7fff84f4575e]
_dispatch_queue_invoke 13 + 185 (in libSystem.B.dylib)
[0x7fff84f45c34]
13 kevent + 10 (in libSystem.B.dylib) [0x7fff84f4408a]
De stapel van de pit:
13 kevent + 97 [0x4701de]
Draad d370b7c
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13??? (in fseventsd + 28857) [0x1000070b9]
__semwait_signal 13 + 10 (in libSystem.B.dylib) [0x7fff84f65eb6]
De stapel van de pit:
semaphore_wait_continue 13 + 0 [0x22a270]
Draad d9c87a8
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13??? (in fseventsd + 28857) [0x1000070b9]
__semwait_signal 13 + 10 (in libSystem.B.dylib) [0x7fff84f65eb6]
De stapel van de pit:
semaphore_wait_continue 13 + 0 [0x22a270]
Draad d9d03d4
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13??? (in fseventsd + 28857) [0x1000070b9]
__semwait_signal 13 + 10 (in libSystem.B.dylib) [0x7fff84f65eb6]
De stapel van de pit:
semaphore_wait_continue 13 + 0 [0x22a270]
Draad db19000
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13??? (in fseventsd + 25920) [0x100006540]
13 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff819e65d6]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad db4c000
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13 gelezen + 10 (in libSystem.B.dylib) [0x7fff84f358e6]
De stapel van de pit:
13 lo64_unix_scall + 77 [0x29f43d]
13 unix_syscall64 + 617 [0x4edaf8]
read_nocancel 13 + 158 [0x495760]
13 schrijven + 312 [0x494fe4]
get_pathbuff 13 + 3054 [0x3039e7]
tsleep 13 + 105 [0x486de7]
activering 13 + 786 [0x4869c0]
thread_block 13 + 33 [0x227184]
thread_block_reason 13 + 331 [0x2270f6]
thread_dispatch 13 + 1966 [0x226e57]
machine_switch_context 13 + 753 [0x2a6a27]
Draad db923d4
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13??? (in fseventsd + 28857) [0x1000070b9]
__semwait_signal 13 + 10 (in libSystem.B.dylib) [0x7fff84f65eb6]
De stapel van de pit:
semaphore_wait_continue 13 + 0 [0x22a270]
Draad df257a8
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13??? (in fseventsd + 39124) [0x1000098d4]
13??? (in fseventsd + 38379) [0x1000095eb]
__semwait_signal 13 + 10 (in libSystem.B.dylib) [0x7fff84f65eb6]
De stapel van de pit:
semaphore_wait_continue 13 + 0 [0x22a270]
Draad e5133d4
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13??? (in fseventsd + 28857) [0x1000070b9]
__semwait_signal 13 + 10 (in libSystem.B.dylib) [0x7fff84f65eb6]
De stapel van de pit:
semaphore_wait_continue 13 + 0 [0x22a270]
Draad e513b7c
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13??? (in fseventsd + 28857) [0x1000070b9]
__semwait_signal 13 + 10 (in libSystem.B.dylib) [0x7fff84f65eb6]
De stapel van de pit:
semaphore_wait_continue 13 + 0 [0x22a270]
Draad eaaf3d4
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13??? (in fseventsd + 28857) [0x1000070b9]
__semwait_signal 13 + 10 (in libSystem.B.dylib) [0x7fff84f65eb6]
De stapel van de pit:
semaphore_wait_continue 13 + 0 [0x22a270]
Draad eff7b7c
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13??? (in fseventsd + 28857) [0x1000070b9]
__semwait_signal 13 + 10 (in libSystem.B.dylib) [0x7fff84f65eb6]
De stapel van de pit:
semaphore_wait_continue 13 + 0 [0x22a270]
Binaire Beelden:
0x100000000 - 0x10000ffff fseventsd??? (???)
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/Support/fseventsd
0x7fff8199b000 - 0x7fff81b10ff7 com.apple.CoreFoundation
6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
Proces: GrowlHelperApp [115]
Weg:
/Library/PreferencePanes/Growl.prefPane/Contents/Resources/GrowlHelperApp.app/Contents/MacOS/GrowlHelperApp
UID: 501
Proces: hidd [39]
Weg: /usr/libexec/hidd
UID: 0
Draad df1c7a8 DispatchQueue 603567609
De stapel van de gebruiker:
13??? (in hidd + 3756) [0x100000eac]
13??? (in hidd + 3822) [0x100000eee]
13 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff819e65d6]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad e513000 DispatchQueue -196164773
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
_pthread_wqthread 13 + 353 (in libSystem.B.dylib) [0x7fff84f45088]
13 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib)
[0x7fff84f4575e]
_dispatch_queue_invoke 13 + 185 (in libSystem.B.dylib)
[0x7fff84f45c34]
13 kevent + 10 (in libSystem.B.dylib) [0x7fff84f4408a]
De stapel van de pit:
13 kevent + 97 [0x4701de]
Draad db197a8
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
__workq_kernreturn 13 + 10 (in libSystem.B.dylib) [0x7fff84f44eaa]
De stapel van de pit:
bsdthread_create 13 + 1313 [0x4c9daa]
Draad e5333d4
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
__IOHIDSessionStartOnThread 13 + 130 (in IOKit) [0x7fff80332d08]
13 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff819e65d6]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Binaire Beelden:
0x100000000 - 0x100000fff hidd??? (???)
<1C01AA01-DEB4-F9FA-942F-5EE13C3217C0> /usr/libexec/hidd
0x7fff80309000 - 0x7fff80367ff7 com.apple.framework.IOKit
2.0 (???) <010C3398-7363-8F4B-719C-263867F15F63>
/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff8199b000 - 0x7fff81b10ff7 com.apple.CoreFoundation
6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
Proces: Het beeld vangt Uitbreiding [191]
Weg: /System/Library/Image vangt/Steun/Beeld vangt
Extension.app/Contents/MacOS/Image vang Uitbreiding
UID: 501
Draad f01b000
De stapel van de gebruiker:
begin 13 + 52 (in Beeld vang Uitbreiding) [0x100001460]
13 NSApplicationMain + 364 (in AppKit) [0x7fff840fd5f8]
13 - [in werking gestelde NSApplication] + 395 (in AppKit) [0x7fff841048d3]
13 - [NSApplication
nextEventMatchingMask: untilDate: inMode: dequeue:] + 155 (in AppKit)
[0x7fff8413ebed]
13 _DPSNextEvent + 708 (in AppKit) [0x7fff8413f29e]
13 BlockUntilNextEventMatchingListInMode + 59 (in
HIToolbox) [0x7fff80cb75d8]
13 ReceiveNextEventCommon + 310 (in HIToolbox) [0x7fff80cb771f]
13 RunCurrentEventLoopInMode + 333 (in HIToolbox)
[0x7fff80cb791a]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation)
[0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation)
[0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib)
[0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad eb97b7c
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
_pthread_wqthread 13 + 353 (in libSystem.B.dylib) [0x7fff84f45088]
13 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib)
[0x7fff84f4575e]
_dispatch_queue_invoke 13 + 185 (in libSystem.B.dylib)
[0x7fff84f45c34]
13 kevent + 10 (in libSystem.B.dylib) [0x7fff84f4408a]
De stapel van de pit:
13 kevent + 97 [0x4701de]
Binaire Beelden:
0x100000000 - 0x100054fff
com.apple.ImageCaptureExtension2 6.0.1 (6.0.1)
/System/Library/Image
Vang/Steun/Beeld vangen Extension.app/Contents/MacOS/Image
Vang Uitbreiding
0x7fff80c89000 - 0x7fff80f87fe7 com.apple.HIToolbox 1.6.3
(???)
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff8199b000 - 0x7fff81b10ff7 com.apple.CoreFoundation
6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff840fb000 - 0x7fff84af1fff com.apple.AppKit 6.6.6
(1038.29) <7BDD335D-5425-0354-5AD6-41C4F1B4A2F4>
/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
Proces: KernelEventAgent [37]
Weg: /usr/sbin/KernelEventAgent
UID: 0
Draad df4f000 DispatchQueue 1
De stapel van de gebruiker:
begin 13 + 52 (in KernelEventAgent) [0x100001174]
leiding 13 + 1130 (in KernelEventAgent) [0x1000030aa]
13 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff819e65d6]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad e5287a8 DispatchQueue 2
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
_pthread_wqthread 13 + 353 (in libSystem.B.dylib) [0x7fff84f45088]
13 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib)
[0x7fff84f4575e]
_dispatch_queue_invoke 13 + 185 (in libSystem.B.dylib)
[0x7fff84f45c34]
13 kevent + 10 (in libSystem.B.dylib) [0x7fff84f4408a]
De stapel van de pit:
13 kevent + 97 [0x4701de]
Draad e518000
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13 select$DARWIN_EXTSN + 10 (in libSystem.B.dylib) [0x7fff84f6edce]
De stapel van de pit:
slaap 13 + 52 [0x486bac]
Binaire Beelden:
0x100000000 - 0x100006ff7 KernelEventAgent??? (???)
<20952F40-244C-DE8B-B7BA-05B8118647CF> /usr/sbin/KernelEventAgent
0x7fff8199b000 - 0x7fff81b10ff7 com.apple.CoreFoundation
6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
Proces: kextd [10]
Weg: /usr/libexec/kextd
UID: 0
Draad d36f3d4 DispatchQueue 1
De stapel van de gebruiker:
13??? (in kextd + 5592) [0x1000015d8]
13??? (in kextd + 9525) [0x100002535]
13 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff819e65d6]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad d382000 DispatchQueue 2
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
_pthread_wqthread 13 + 353 (in libSystem.B.dylib) [0x7fff84f45088]
13 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib)
[0x7fff84f4575e]
_dispatch_queue_invoke 13 + 185 (in libSystem.B.dylib)
[0x7fff84f45c34]
13 kevent + 10 (in libSystem.B.dylib) [0x7fff84f4408a]
De stapel van de pit:
13 kevent + 97 [0x4701de]
Binaire Beelden:
0x100000000 - 0x10001afff kextd??? (???)
<8B6656DD-7F84-E05A-1F26-8AB4BD1038A8> /usr/libexec/kextd
0x7fff8199b000 - 0x7fff81b10ff7 com.apple.CoreFoundation
6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
Proces: krb5kdc [28]
Weg: /usr/sbin/krb5kdc
UID: 0
Draad df1e000 DispatchQueue 1
De stapel van de gebruiker:
13??? (in krb5kdc + 6648) [0x1edf5e9f8]
13??? (in krb5kdc + 47115) [0x1edf6880b]
13??? (in krb5kdc + 56345) [0x1edf6ac19]
13 select$DARWIN_EXTSN + 10 (in libSystem.B.dylib) [0x7fff84f6edce]
De stapel van de pit:
slaap 13 + 52 [0x486bac]
Draad df1b000 DispatchQueue 2
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
_pthread_wqthread 13 + 353 (in libSystem.B.dylib) [0x7fff84f45088]
13 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib)
[0x7fff84f4575e]
_dispatch_queue_invoke 13 + 185 (in libSystem.B.dylib)
[0x7fff84f45c34]
13 kevent + 10 (in libSystem.B.dylib) [0x7fff84f4408a]
De stapel van de pit:
13 kevent + 97 [0x4701de]
Binaire Beelden:
0x1edf5d000 - 0x1edf6fff7 krb5kdc??? (???)
/usr/sbin/krb5kdc
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
Proces: launchd [81]
Weg: /sbin/launchd
UID: 501
Draad e6ad7a8
De stapel van de gebruiker:
begin 13 + 52 (in launchd) [0x1000011e0]
leiding 13 + 1841 (in launchd) [0x1000075f4]
launchd_runtime 13 + 450 (in launchd) [0x10000b0ce]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad e6adb7c
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13 select$DARWIN_EXTSN + 10 (in libSystem.B.dylib) [0x7fff84f6edce]
De stapel van de pit:
slaap 13 + 52 [0x486bac]
Binaire Beelden:
0x100000000 - 0x100029fff launchd??? (???)
<1BDA9056-183E-3BA7-528E-9DCEC77E75ED> /sbin/launchd
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
Proces: launchd [1]
Weg: /sbin/launchd
UID: 0
Draad d3857a8
De stapel van de gebruiker:
begin 13 + 52 (in launchd) [0x1000011e0]
leiding 13 + 1841 (in launchd) [0x1000075f4]
launchd_runtime 13 + 450 (in launchd) [0x10000b0ce]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad d3113d4
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13 select$DARWIN_EXTSN + 10 (in libSystem.B.dylib) [0x7fff84f6edce]
De stapel van de pit:
slaap 13 + 52 [0x486bac]
Draad d31d000
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
update_thread 13 + 22 (in launchd) [0x1000076f2]
slaap 13 + 61 (in libSystem.B.dylib) [0x7fff84fb2b14]
__semwait_signal 13 + 10 (in libSystem.B.dylib) [0x7fff84f65eb6]
De stapel van de pit:
semaphore_wait_continue 13 + 0 [0x22a270]
Binaire Beelden:
0x100000000 - 0x100029fff launchd??? (???)
<1BDA9056-183E-3BA7-528E-9DCEC77E75ED> /sbin/launchd
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
Proces: loginwindow [36]
Weg:
/System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow
UID: 501
Draad df1f7a8
De stapel van de gebruiker:
13??? (in loginwindow + 18244) [0x100004744]
13??? (in loginwindow + 19674) [0x100004cda]
13 - [in werking gestelde NSApplication] + 395 (in AppKit) [0x7fff841048d3]
13 - [NSApplication
nextEventMatchingMask: untilDate: inMode: dequeue:] + 155 (in AppKit)
[0x7fff8413ebed]
13 _DPSNextEvent + 708 (in AppKit) [0x7fff8413f29e]
13 BlockUntilNextEventMatchingListInMode + 59 (in
HIToolbox) [0x7fff80cb75d8]
13 ReceiveNextEventCommon + 310 (in HIToolbox) [0x7fff80cb771f]
13 RunCurrentEventLoopInMode + 333 (in HIToolbox)
[0x7fff80cb791a]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation)
[0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation)
[0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib)
[0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad e653000
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
_pthread_wqthread 13 + 353 (in libSystem.B.dylib) [0x7fff84f45088]
13 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib)
[0x7fff84f4575e]
_dispatch_queue_invoke 13 + 185 (in libSystem.B.dylib)
[0x7fff84f45c34]
13 kevent + 10 (in libSystem.B.dylib) [0x7fff84f4408a]
De stapel van de pit:
13 kevent + 97 [0x4701de]
Binaire Beelden:
0x100000000 - 0x100077fff com.apple.log inwindow 6.1
(6.1)
/System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow
0x7fff80c89000 - 0x7fff80f87fe7 com.apple.HIToolbox 1.6.3
(???)
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff8199b000 - 0x7fff81b10ff7 com.apple.CoreFoundation
6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff840fb000 - 0x7fff84af1fff com.apple.AppKit 6.6.6
(1038.29) <7BDD335D-5425-0354-5AD6-41C4F1B4A2F4>
/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
Proces: LogTransport2 [216]
Weg: /Applications/Adobe Creative Suite 5/Adobe
Illustrator CS5/Adobe
Illustrator.app/Contents/MacOS/LogTransport2.app/Contents/MacOS/LogTransport2
UID: 501
Proces: mDNSResponder [18]
Weg: /usr/sbin/mDNSResponder
UID: 65
Draad d9d0000 DispatchQueue 1
De stapel van de gebruiker:
begin 13 + 33 (in mDNSResponder) [0x100030b89]
_start 13 + 224 (in mDNSResponder) [0x100001032]
leiding 13 + 2954 (in mDNSResponder) [0x100001bcc]
13 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff819e65d6]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad db927a8 DispatchQueue 2
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
_pthread_wqthread 13 + 353 (in libSystem.B.dylib) [0x7fff84f45088]
13 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib)
[0x7fff84f4575e]
_dispatch_queue_invoke 13 + 185 (in libSystem.B.dylib)
[0x7fff84f45c34]
13 kevent + 10 (in libSystem.B.dylib) [0x7fff84f4408a]
De stapel van de pit:
13 kevent + 97 [0x4701de]
Draad df103d4
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13 kevent + 10 (in libSystem.B.dylib) [0x7fff84f4408a]
De stapel van de pit:
13 kevent + 97 [0x4701de]
Binaire Beelden:
0x100000000 - 0x100064ff7 mDNSResponder??? (???)
/usr/sbin/mDNSResponder
0x7fff8199b000 - 0x7fff81b10ff7 com.apple.CoreFoundation
6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
Proces: mds [35]
Weg:
/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Support/mds
UID: 0
Draad df1bb7c DispatchQueue -1291632349
De stapel van de gebruiker:
13??? (in mds + 20372) [0x100004f94]
13??? (in mds + 52170) [0x10000cbca]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad d9d17a8 DispatchQueue -2447288
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
_pthread_wqthread 13 + 353 (in libSystem.B.dylib) [0x7fff84f45088]
13 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib)
[0x7fff84f4575e]
_dispatch_queue_invoke 13 + 185 (in libSystem.B.dylib)
[0x7fff84f45c34]
13 kevent + 10 (in libSystem.B.dylib) [0x7fff84f4408a]
De stapel van de pit:
13 kevent + 97 [0x4701de]
Draad e93d000
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
__workq_kernreturn 13 + 10 (in libSystem.B.dylib) [0x7fff84f44eaa]
De stapel van de pit:
bsdthread_create 13 + 1313 [0x4c9daa]
Draad f20a7a8
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
__workq_kernreturn 13 + 10 (in libSystem.B.dylib) [0x7fff84f44eaa]
De stapel van de pit:
bsdthread_create 13 + 1313 [0x4c9daa]
Draad 1be58b7c
De stapel van de gebruiker:
start_wqthread 11 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
__workq_kernreturn 11 + 10 (in libSystem.B.dylib) [0x7fff84f44eaa]
De stapel van de pit:
bsdthread_create 11 + 1313 [0x4c9daa]
Binaire Beelden:
0x100000000 - mds 0x1000ccff7??? (???)
/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Support/mds
0x7fff8199b000 - 0x7fff81b10ff7 com.apple.CoreFoundation
6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
Proces: mdworker [140]
Weg:
/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker
UID: 501
Draad d36a3d4 DispatchQueue -2077837
De stapel van de gebruiker:
13??? (in mdworker + 7096) [0x100001bb8]
13??? (in mdworker + 36657) [0x100008f31]
13 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff819e65d6]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad f288b7c DispatchQueue -327693
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
_pthread_wqthread 13 + 353 (in libSystem.B.dylib) [0x7fff84f45088]
13 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib)
[0x7fff84f4575e]
_dispatch_queue_invoke 13 + 185 (in libSystem.B.dylib)
[0x7fff84f45c34]
13 kevent + 10 (in libSystem.B.dylib) [0x7fff84f4408a]
De stapel van de pit:
13 kevent + 97 [0x4701de]
Draad f288000
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13??? (in mdworker + 44371) [0x10000ad53]
13??? (in mdworker + 45262) [0x10000b0ce]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Binaire Beelden:
0x100000000 - 0x10003cfff mdworker??? (???)
<1ECEB0FE-26FE-B777-BCF5-5EE058430CF7>
/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker
0x7fff8199b000 - 0x7fff81b10ff7 com.apple.CoreFoundation
6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
Proces: mdworker [139]
Weg:
/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker
UID: 89
Draad e3983d4
De stapel van de gebruiker:
13??? (in mdworker + 7096) [0x100001bb8]
13??? (in mdworker + 36657) [0x100008f31]
13 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff819e65d6]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad d9aeb7c
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
_pthread_wqthread 13 + 353 (in libSystem.B.dylib) [0x7fff84f45088]
13 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib)
[0x7fff84f4575e]
_dispatch_queue_invoke 13 + 185 (in libSystem.B.dylib)
[0x7fff84f45c34]
13 kevent + 10 (in libSystem.B.dylib) [0x7fff84f4408a]
De stapel van de pit:
13 kevent + 97 [0x4701de]
Draad df1a7a8
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13??? (in mdworker + 44371) [0x10000ad53]
13??? (in mdworker + 45262) [0x10000b0ce]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Binaire Beelden:
0x100000000 - 0x10003cfff mdworker??? (???)
<1ECEB0FE-26FE-B777-BCF5-5EE058430CF7>
/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker
0x7fff8199b000 - 0x7fff81b10ff7 com.apple.CoreFoundation
6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
Proces: notifyd [12]
Weg: /usr/sbin/notifyd
UID: 0
Draad d494b7c DispatchQueue 1
De stapel van de gebruiker:
13??? [0x100000cec]
13??? [0x100002200]
13??? [0x7fff84f4408a]
De stapel van de pit:
13 kevent + 97 [0x4701de]
Draad d385000
De stapel van de gebruiker:
13??? [0x7fff84f64309]
13??? [0x7fff84f64456]
13??? [0x100002417]
13??? [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Proces: ntpd [100]
Weg: /usr/sbin/ntpd
UID: 0
Draad ec603d4 DispatchQueue 1
De stapel van de gebruiker:
13??? (in ntpd + 6356) [0x1000018d4]
13??? (in ntpd + 36841) [0x100008fe9]
13??? (in ntpd + 17971) [0x100004633]
__sigsuspend 13 + 10 (in libSystem.B.dylib) [0x7fff84f8b32e]
De stapel van de pit:
slaap 13 + 52 [0x486bac]
Binaire Beelden:
0x100000000 - 0x100056fef ntpd??? (???)
<3BCDB850-F8F7-CF24-9E18-61AAE7668E14> /usr/sbin/ntpd
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
Proces: ntpd [27]
Weg: /usr/sbin/ntpd
UID: 0
Draad df20b7c DispatchQueue 1
De stapel van de gebruiker:
13??? (in ntpd + 6356) [0x1000018d4]
13??? (in ntpd + 36998) [0x100009086]
__sigsuspend 13 + 10 (in libSystem.B.dylib) [0x7fff84f8b32e]
De stapel van de pit:
slaap 13 + 52 [0x486bac]
Binaire Beelden:
0x100000000 - 0x100056fef ntpd??? (???)
<3BCDB850-F8F7-CF24-9E18-61AAE7668E14> /usr/sbin/ntpd
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
Proces: pboard [90]
Weg: /usr/sbin/pboard
UID: 501
Draad ebd07a8 DispatchQueue 1
De stapel van de gebruiker:
13??? (in pboard + 5860) [0x1000016e4]
13??? (in pboard + 6062) [0x1000017ae]
mach_msg_server 13 + 468 (in libSystem.B.dylib) [0x7fff84fa7bb7]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Binaire Beelden:
0x100000000 - 0x100001fff pboard??? (???)
<64C19BF7-8D99-3E13-79F3-3313E9404EBB> /usr/sbin/pboard
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
Proces: securityd [22]
Weg: /usr/sbin/securityd
UID: 0
Draad db92b7c DispatchQueue 1
De stapel van de gebruiker:
13??? (in securityd + 4644) [0x100001224]
13??? (in securityd + 6989) [0x100001b4d]
13??? (in securityd + 26119) [0x100006607]
13??? (in securityd + 27127) [0x1000069f7]
mach_msg_overwrite_trap 13 + 10 (in libSystem.B.dylib)
[0x7fff84f2b306]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad e528000
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13??? (in securityd + 32490) [0x100007eea]
13??? (in securityd + 32642) [0x100007f82]
13??? (in securityd + 27127) [0x1000069f7]
mach_msg_overwrite_trap 13 + 10 (in libSystem.B.dylib)
[0x7fff84f2b306]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Binaire Beelden:
0x100000000 - 0x1000e5fff securityd??? (???)
/usr/sbin/securityd
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
Proces: spindump [238]
Weg: /usr/sbin/spindump
UID: 0
Draad e528b7c
De stapel van de gebruiker:
13??? (in spindump + 3664) [0x100000e50]
13??? (in spindump + 6339) [0x1000018c3]
13 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff819e65d6]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad d389000
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
__workq_kernreturn 13 + 10 (in libSystem.B.dylib) [0x7fff84f44eaa]
De stapel van de pit:
bsdthread_create 13 + 1313 [0x4c9daa]
Draad eced3d4
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
_pthread_wqthread 13 + 353 (in libSystem.B.dylib) [0x7fff84f45088]
13 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib)
[0x7fff84f4575e]
_dispatch_queue_invoke 13 + 57 (in libSystem.B.dylib) [0x7fff84f45bb4]
_dispatch_queue_drain 13 + 261 (in libSystem.B.dylib)
[0x7fff84f45d5c]
_dispatch_queue_invoke 13 + 185 (in libSystem.B.dylib)
[0x7fff84f45c34]
_dispatch_source_invoke 13 + 273 (in
libSystem.B.dylib) [0x7fff84f46873]
13??? (in spindump + 15912) [0x100003e28]
syscall 13 + 10 (in libSystem.B.dylib) [0x7fff84f677ae]
De stapel van de pit:
13 lo64_unix_scall + 77 [0x29f43d]
13 unix_syscall64 + 617 [0x4edaf8]
stack_snapshot 13 + 92 [0x45f727]
13 stack_snapshot2 + 154 [0x45f639]
Draad f1593d4
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
_pthread_wqthread 13 + 353 (in libSystem.B.dylib) [0x7fff84f45088]
13 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib)
[0x7fff84f4575e]
_dispatch_queue_invoke 13 + 185 (in libSystem.B.dylib)
[0x7fff84f45c34]
13 kevent + 10 (in libSystem.B.dylib) [0x7fff84f4408a]
De stapel van de pit:
11 lo64_unix_scall + 77 [0x29f43d]
11 unix_syscall64 + 617 [0x4edaf8]
11 kevent + 95 [0x4701dc]
11 kqueue_scan + 1643 [0x4700d4]
11 kqueue_scan + 415 [0x46fc08]
thread_block_parameter 11 + 32 [0x227161]
thread_block_reason 11 + 309 [0x2270e0]
thread_go 11 + 1982 [0x2264bc]
thread_setrun 11 + 1351 [0x2256d2]
machine_idle 11 + 239 [0x2a9ade]
2 kevent + 97 [0x4701de]
Draad f189b7c
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13??? (in spindump + 8731) [0x10000221b]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad 1be583d4
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
__workq_kernreturn 13 + 10 (in libSystem.B.dylib) [0x7fff84f44eaa]
De stapel van de pit:
bsdthread_create 13 + 1313 [0x4c9daa]
Binaire Beelden:
0x100000000 - 0x100010ff7 spindump??? (???)
<2C78424D-53E1-FD2F-86A8-132BCFC1E30E> /usr/sbin/spindump
0x7fff8199b000 - 0x7fff81b10ff7 com.apple.CoreFoundation
6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
Proces: spindump_symbolicator [239]
Weg: /usr/libexec/spindump_symbolicator
UID: 0
Draad eb977a8
De stapel van de gebruiker:
13??? (in spindump_symbolicator + 5772) [0x10000168c]
13??? (in spindump_symbolicator + 6159) [0x10000180f]
13 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff819e65d6]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad f159000
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
_pthread_wqthread 13 + 353 (in libSystem.B.dylib) [0x7fff84f45088]
13 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib)
[0x7fff84f4575e]
_dispatch_queue_invoke 13 + 185 (in libSystem.B.dylib)
[0x7fff84f45c34]
13 kevent + 10 (in libSystem.B.dylib) [0x7fff84f4408a]
De stapel van de pit:
13 kevent + 97 [0x4701de]
Draad 1be567a8
De stapel van de gebruiker:
thread_start 2 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 2 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
cleaner_thread_main 2 (void*) + 36 (in CoreSymbolication)
[0x7fff81d860d5]
__semwait_signal 2 + 10 (in libSystem.B.dylib) [0x7fff84f65eb6]
De stapel van de pit:
semaphore_wait_continue 2 + 0 [0x22a270]
Binaire Beelden:
0x100000000 - spindump_symbolicator 0x100001fff???
(???)
/usr/libexec/spindump_symbolicator
0x7fff8199b000 - 0x7fff81b10ff7 com.apple.CoreFoundation
6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff81d7a000 - 0x7fff81decfef com.apple.CoreSymbolication
2.0 (23) <9DBEFE60-0268-9B93-620F-B2737100E7F2>
/System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
Proces: Schakelbord [194]
Weg: /Library/Application
Steun/Adobe/Schakelbord/SwitchBoard.app/Contents/MacOS/SwitchBoard
UID: 501
Proces: syslogd [15]
Weg: /usr/sbin/syslogd
UID: 0
Draad d8f17a8
De stapel van de gebruiker:
13??? (in syslogd + 2444) [0x10000098c]
13 select$DARWIN_EXTSN + 10 (in libSystem.B.dylib) [0x7fff84f6edce]
De stapel van de pit:
slaap 13 + 52 [0x486bac]
Draad d8f1000
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13??? (in syslogd + 46429) [0x10000b55d]
13??? (in syslogd + 36870) [0x100009006]
__semwait_signal 13 + 10 (in libSystem.B.dylib) [0x7fff84f65eb6]
De stapel van de pit:
semaphore_wait_continue 13 + 0 [0x22a270]
Draad d8f13d4
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13??? (in syslogd + 45284) [0x10000b0e4]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad d966b7c
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13??? (in syslogd + 35937) [0x100008c61]
_vprocmgr_log_drain 13 + 80 (in libSystem.B.dylib) [0x7fff8505702e]
vproc_mig_log_drain 13 + 95 (in libSystem.B.dylib) [0x7fff85057a1f]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Binaire Beelden:
0x100000000 - 0x100013fff syslogd??? (???)
<294E71C5-F936-2D72-B70F-01399F9DFB3E> /usr/sbin/syslogd
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
Proces: SystemUIServer [86]
Weg:
/System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer
UID: 501
Draad ecabb7c
De stapel van de gebruiker:
13??? (in SystemUIServer + 69452) [0x100010f4c]
13??? (in SystemUIServer + 71108) [0x1000115c4]
13 - [in werking gestelde NSApplication] + 395 (in AppKit) [0x7fff841048d3]
13 - [NSApplication
nextEventMatchingMask: untilDate: inMode: dequeue:] + 155 (in AppKit)
[0x7fff8413ebed]
13 _DPSNextEvent + 708 (in AppKit) [0x7fff8413f29e]
13 BlockUntilNextEventMatchingListInMode + 59 (in
HIToolbox) [0x7fff80cb75d8]
13 ReceiveNextEventCommon + 310 (in HIToolbox) [0x7fff80cb771f]
13 RunCurrentEventLoopInMode + 333 (in HIToolbox)
[0x7fff80cb791a]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation)
[0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation)
[0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib)
[0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad d3287a8 DispatchQueue 2
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
_pthread_wqthread 13 + 353 (in libSystem.B.dylib) [0x7fff84f45088]
13 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib)
[0x7fff84f4575e]
_dispatch_queue_invoke 13 + 185 (in libSystem.B.dylib)
[0x7fff84f45c34]
13 kevent + 10 (in libSystem.B.dylib) [0x7fff84f4408a]
De stapel van de pit:
13 kevent + 97 [0x4701de]
Draad eff73d4
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
13 select$DARWIN_EXTSN + 10 (in libSystem.B.dylib) [0x7fff84f6edce]
De stapel van de pit:
slaap 13 + 52 [0x486bac]
Binaire Beelden:
0x100000000 - 0x100066ff7 com.apple.systemuiserver
1.6 (298.7) <8C0C1370-356E-7689-A990-CDF1B79372FD>
/System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer
0x7fff80c89000 - 0x7fff80f87fe7 com.apple.HIToolbox 1.6.3
(???)
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff8199b000 - 0x7fff81b10ff7 com.apple.CoreFoundation
6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff840fb000 - 0x7fff84af1fff com.apple.AppKit 6.6.6
(1038.29) <7BDD335D-5425-0354-5AD6-41C4F1B4A2F4>
/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
Proces: usbmuxd [30]
Weg:
/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/Resources/usbmuxd
UID: 213
Draad df1f3d4 DispatchQueue 100
De stapel van de gebruiker:
13??? (in usbmuxd + 4013) [0x1fad]
13??? (in usbmuxd + 4224) [0x2080]
13??? (in usbmuxd + 9168) [0x33d0]
13 CFRunLoopRun + 84 (in CoreFoundation) [0x96795fd4]
13 CFRunLoopRunSpecific + 452 (in CoreFoundation) [0x96790094]
__CFRunLoopRun 13 + 2079 (in CoreFoundation) [0x96790faf]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x995c40fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad df207a8 DispatchQueue 1634545000
De stapel van de gebruiker:
start_wqthread 13 + 30 (in libSystem.B.dylib) [0x995e9b86]
_pthread_wqthread 13 + 390 (in libSystem.B.dylib) [0x995e9d41]
13 _dispatch_worker_thread2 + 240 (in libSystem.B.dylib) [0x995ea2be]
_dispatch_queue_invoke 13 + 163 (in libSystem.B.dylib) [0x995ea519]
13 kevent + 10 (in libSystem.B.dylib) [0x995ea942]
De stapel van de pit:
13 kevent + 97 [0x4701de]
Draad df25000
De stapel van de gebruiker:
thread_start 13 + 34 (in libSystem.B.dylib) [0x995f16a2]
_pthread_start 13 + 345 (in libSystem.B.dylib) [0x995f181d]
13 select$DARWIN_EXTSN + 10 (in libSystem.B.dylib) [0x995e3086]
De stapel van de pit:
slaap 13 + 52 [0x486bac]
Binaire Beelden:
0x1000 - 0xcfff usbmuxd??? (???)
<2036E06A-C07D-341C-64AF-DB418CAD1045>
/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/Resources/usbmuxd
0x96754000 - 0x968cefe3 com.apple.CoreFoundation 6.6.3 (550.29)
<00373783-3744-F47D-2191-BEEA658F0C3D>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x995c3000 - 0x99769feb libSystem.B.dylib??? (???)
<3441F338-2218-6D36-3F95-3A16FBF6713D> /usr/lib/libSystem.B.dylib
Proces: UserEventAgent [102]
Weg: /usr/libexec/UserEventAgent
UID: 501
Draad e8e37a8 DispatchQueue 1
De stapel van de gebruiker:
13??? (in UserEventAgent + 3740) [0x100000e9c]
13??? (in UserEventAgent + 6152) [0x100001808]
13 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff819e65d6]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad f159b7c DispatchQueue 2
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
_pthread_wqthread 13 + 353 (in libSystem.B.dylib) [0x7fff84f45088]
13 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib)
[0x7fff84f4575e]
_dispatch_queue_invoke 13 + 185 (in libSystem.B.dylib)
[0x7fff84f45c34]
13 kevent + 10 (in libSystem.B.dylib) [0x7fff84f4408a]
De stapel van de pit:
13 kevent + 97 [0x4701de]
Draad df4f7a8
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
__NSThread__main 13 + 1429 (in Stichting) [0x7fff87da7e8d]
13 RegisterAppTracker + 11112 (in ACRRDaemon) [0x1000460e8]
13 - [in werking gestelde NSRunLoop (NSRunLoop)] + 77 (in Stichting) [0x7fff87de28f7]
13 - [NSRunLoop (NSRunLoop) runMode: beforeDate:] + 270 (in
Stichting) [0x7fff87de2a18]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation)
[0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib)
[0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Binaire Beelden:
0x100000000 - 0x100001fff UserEventAgent??? (???)
/usr/libexec/UserEventAgent
0x100042000 - 0x100048ff7
com.apple.CrashReporter.ACRRDaemonPlugin 10.6.3 (250)
/System/Library/UserEventPlugins/ACRRDaemon.plugin/Contents/MacOS/ACRRDaemon
0x7fff8199b000 - 0x7fff81b10ff7 com.apple.CoreFoundation
6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
0x7fff87d97000 - 0x7fff88018fef com.apple. Stichting 6.6.3
(751.29)
/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
Proces: UserNotificationCenter [230]
Weg:
/System/Library/CoreServices/UserNotificationCenter.app/Contents/MacOS/UserNotificationCenter
UID: 501
Draad e5e2000
De stapel van de gebruiker:
13??? (in UserNotificationCenter + 4732) [0x10000127c]
13??? (in UserNotificationCenter + 6182) [0x100001826]
13 - [in werking gestelde NSApplication] + 395 (in AppKit) [0x7fff841048d3]
13 - [NSApplication
nextEventMatchingMask: untilDate: inMode: dequeue:] + 155 (in AppKit)
[0x7fff8413ebed]
13 _DPSNextEvent + 708 (in AppKit) [0x7fff8413f29e]
13 BlockUntilNextEventMatchingListInMode + 59 (in
HIToolbox) [0x7fff80cb75d8]
13 ReceiveNextEventCommon + 310 (in HIToolbox) [0x7fff80cb771f]
13 RunCurrentEventLoopInMode + 333 (in HIToolbox)
[0x7fff80cb791a]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation)
[0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation)
[0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib)
[0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad f1897a8 DispatchQueue 276794184
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
_pthread_wqthread 13 + 353 (in libSystem.B.dylib) [0x7fff84f45088]
13 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib)
[0x7fff84f4575e]
_dispatch_queue_invoke 13 + 185 (in libSystem.B.dylib)
[0x7fff84f45c34]
13 kevent + 10 (in libSystem.B.dylib) [0x7fff84f4408a]
De stapel van de pit:
13 kevent + 97 [0x4701de]
Binaire Beelden:
0x100000000 - 0x100009ff7
com.apple.UserNotificationCenter 3.1.0 (22)
<0A0BBCF3-7D1E-7844-A1EA-7863EDFD387E>
/System/Library/CoreServices/UserNotificationCenter.app/Contents/MacOS/UserNotificationCenter
0x7fff80c89000 - 0x7fff80f87fe7 com.apple.HIToolbox 1.6.3
(???)
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff8199b000 - 0x7fff81b10ff7 com.apple.CoreFoundation
6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff840fb000 - 0x7fff84af1fff com.apple.AppKit 6.6.6
(1038.29) <7BDD335D-5425-0354-5AD6-41C4F1B4A2F4>
/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
Proces: WindowServer [60]
Weg:
/System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreGraphics.framework/Resources/WindowServer
UID: 88
Draad d9d0b7c DispatchQueue 1
De stapel van de gebruiker:
begin 13 + 52 (in WindowServer) [0x100000f18]
leiding 13 + 9 (in WindowServer) [0x100000f29]
13 CGXGetRootAdminCredentials + 0 (in CoreGraphics) [0x7fff86bcd856]
13 CGXServerLoop + 139 (in CoreGraphics) [0x7fff86c02d4a]
13 CGXRunOneServicesPass + 672 (in CoreGraphics) [0x7fff86bf9e4d]
10 CGXRunOneServerPass + 262 (in CoreGraphics) [0x7fff86bfcc7a]
mach_msg_trap 10 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
3 CGXRunOneServerPass + 208 (in CoreGraphics) [0x7fff86bfcc44]
mach_msg_overwrite_trap 3 + 10 (in libSystem.B.dylib)
[0x7fff84f2b306]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad db193d4 DispatchQueue 2
De stapel van de gebruiker:
start_wqthread 13 + 13 (in libSystem.B.dylib) [0x7fff84f44f25]
_pthread_wqthread 13 + 353 (in libSystem.B.dylib) [0x7fff84f45088]
13 _dispatch_worker_thread2 + 252 (in libSystem.B.dylib)
[0x7fff84f4575e]
_dispatch_queue_invoke 13 + 185 (in libSystem.B.dylib)
[0x7fff84f45c34]
13 kevent + 10 (in libSystem.B.dylib) [0x7fff84f4408a]
De stapel van de pit:
13 kevent + 97 [0x4701de]
Draad e640000
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
eventThread 13 + 470 (in CoreGraphics) [0x7fff86bdf73e]
13 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff819e65d6]
13 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff819e684f]
__CFRunLoopRun 13 + 1698 (in CoreFoundation) [0x7fff819e73c2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Draad e92c000
De stapel van de gebruiker:
thread_start 13 + 13 (in libSystem.B.dylib) [0x7fff84f64309]
_pthread_start 13 + 331 (in libSystem.B.dylib) [0x7fff84f64456]
thread_fun 13 + 34 (in QuartzCore) [0x7fff82c23b22]
13 CA:: Geef: terug: Server:: server_thread (void*) + 177 (in
QuartzCore) [0x7fff82c23be2]
mach_msg_trap 13 + 10 (in libSystem.B.dylib) [0x7fff84f2b2fa]
De stapel van de pit:
ipc_mqueue_receive_continue 13 + 0 [0x210c2f]
Binaire Beelden:
0x100000000 - 0x100000fff WindowServer??? (???)
<339853D7-1BCB-51F6-24DA-7615FFB3DDEB>
/System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreGraphics.framework/Resources/WindowServer
0x7fff8199b000 - 0x7fff81b10ff7 com.apple.CoreFoundation
6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff82bd1000 - 0x7fff82f6aff7 com.apple.QuartzCore 1.6.2
(227.22) <76EE0A32-B20B-F316-ADDD-4230329253D5>
/System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff84f2a000 - 0x7fff850eafef libSystem.B.dylib??? (???)
<95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
0x7fff86b12000 - com.apple.CoreGraphics 0x7fff8720f067
1.543.50 (???) <46A7D60C-0500-B96C-ECAD-1D658487D213>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
Proces: kernel_task [0]
Weg: kernel_task
UID: 0
Versie: De Versie 10.4.0 van de Pit van Darwin: Van Fri 23 het 18:28 van April: 53 PDT
2010; wortel: xnu-1504.7.4~1/RELEASE_I386
Draad 0
Draad 863a80
De stapel van de pit:
vm_pageout_continue 13 + 0 [0x276c2d]
Draad d190000
De stapel van de pit:
thread_stack_enqueue 13 + 90 [0x22e4a1]
Draad d1903d4
De stapel van de pit:
thread_daemon_init 13 + 214 [0x22e20e]
Draad d1907a8
De stapel van de pit:
assert_wait_deadline 13 + 271 [0x227b4f]
Draad d190b7c
De stapel van de pit:
idle_thread 13 + 0 [0x228015]
Draad d191000
De stapel van de pit:
idle_thread 13 + 0 [0x228015]
Draad d1913d4
De stapel van de pit:
13 thread_call_initialize + 663 [0x22fa9b]
Draad d1917a8
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad d191b7c
De stapel van de pit:
13 thread_call_initialize + 354 [0x22f966]
Draad d311000
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad d3117a8
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad d311b7c
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad d3193d4
De stapel van de pit:
aio_return 13 + 295 [0x4633fd]
Draad d3197a8
De stapel van de pit:
call_continuation 13 + 28 [0x29e6cc]
idle_thread 13 + 23 [0x22802c]
thread_setrun 13 + 1351 [0x2256d2]
machine_idle 13 + 239 [0x2a9ade]
Draad d319b7c
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad d31b000
De stapel van de pit:
call_continuation 13 + 28 [0x29e6cc]
13 com.apple.driver.AppleIntelCPUPowerManagement 105.10.0 +
23498 [0x11d8bca]
13 IOLockSleep + 39 [0x52b2ab]
lck_mtx_sleep 13 + 87 [0x221948]
thread_block 13 + 33 [0x227184]
thread_block_reason 13 + 331 [0x2270f6]
thread_dispatch 13 + 1966 [0x226e57]
machine_switch_context 13 + 753 [0x2a6a27]
Draad d31b3d4
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad d31bb7c
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad d31d3d4
De stapel van de pit:
aio_return 13 + 295 [0x4633fd]
Draad d31d7a8
De stapel van de pit:
call_continuation 13 + 28 [0x29e6cc]
13 buf_strategy + 1042 [0x2ca408]
msleep 13 + 157 [0x486eef]
activering 13 + 334 [0x4867fc]
lck_mtx_sleep 13 + 87 [0x221948]
thread_block 13 + 33 [0x227184]
thread_block_reason 13 + 331 [0x2270f6]
thread_dispatch 13 + 1966 [0x226e57]
machine_switch_context 13 + 753 [0x2a6a27]
Draad d31db7c
De stapel van de pit:
13 thread_call_initialize + 663 [0x22fa9b]
Draad d328000
De stapel van de pit:
call_continuation 13 + 28 [0x29e6cc]
audit_worker_init 13 + 956 [0x45ed2d]
_audit_cv_wait 13 + 50 [0x44fee1]
msleep 13 + 157 [0x486eef]
activering 13 + 334 [0x4867fc]
lck_mtx_sleep 13 + 87 [0x221948]
thread_block 13 + 33 [0x227184]
thread_block_reason 13 + 331 [0x2270f6]
thread_dispatch 13 + 1966 [0x226e57]
machine_switch_context 13 + 753 [0x2a6a27]
Draad d3283d4
De stapel van de pit:
aio_return 13 + 295 [0x4633fd]
Draad d328b7c
De stapel van de pit:
call_continuation 11 + 28 [0x29e6cc]
idle_thread 11 + 23 [0x22802c]
thread_setrun 11 + 1351 [0x2256d2]
machine_idle 11 + 239 [0x2a9ade]
idle_thread 2 + 0 [0x228015]
Draad d369000
De stapel van de pit:
13 thread_call_initialize + 663 [0x22fa9b]
Draad d3693d4
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad d3697a8
De stapel van de pit:
m_freem 13 + 15868 [0x4a6802]
Draad d369b7c
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad d36a000
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad d36a7a8
De stapel van de pit:
13 com.apple.nke.applicationfirewall 2.1.11 + 23895 [0x153ed57]
Draad d36ab7c
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad d36f000
De stapel van de pit:
call_continuation 13 + 28 [0x29e6cc]
ifnet_detach_protocol 13 + 1603 [0x31a281]
msleep 13 + 157 [0x486eef]
activering 13 + 334 [0x4867fc]
lck_mtx_sleep 13 + 87 [0x221948]
thread_block 13 + 33 [0x227184]
thread_block_reason 13 + 331 [0x2270f6]
thread_dispatch 13 + 1966 [0x226e57]
machine_switch_context 13 + 753 [0x2a6a27]
Draad d36f7a8
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad d3703d4
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad d3823d4
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad d3827a8
De stapel van de pit:
call_continuation 13 + 28 [0x29e6cc]
ux_handler_init 13 + 475 [0x4d0b5f]
13 mach_msg_receive + 168 [0x216e31]
13 ipc_mqueue_receive + 101 [0x211aa8]
thread_block 13 + 33 [0x227184]
thread_block_reason 13 + 331 [0x2270f6]
thread_dispatch 13 + 1966 [0x226e57]
machine_switch_context 13 + 753 [0x2a6a27]
Draad d3853d4
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad d385b7c
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad d3893d4
De stapel van de pit:
ifnet_detach 13 + 582 [0x319a17]
Draad d3897a8
De stapel van de pit:
aio_return 13 + 295 [0x4633fd]
Draad d389b7c
De stapel van de pit:
vm_pageout_internal_start 13 + 80 [0x2751b3]
Draad d4943d4
De stapel van de pit:
13 memory_object_recover_named + 18276 [0x26f7d5]
Draad d4947a8
De stapel van de pit:
vm_pageout_internal_start 13 + 945 [0x275514]
Draad d966000
De stapel van de pit:
call_continuation 13 + 28 [0x29e6cc]
ifnet_detach_protocol 13 + 1603 [0x31a281]
msleep 13 + 157 [0x486eef]
activering 13 + 334 [0x4867fc]
lck_mtx_sleep 13 + 87 [0x221948]
thread_block 13 + 33 [0x227184]
thread_block_reason 13 + 331 [0x2270f6]
thread_dispatch 13 + 1966 [0x226e57]
machine_switch_context 13 + 753 [0x2a6a27]
Draad d9663d4
De stapel van de pit:
call_continuation 13 + 28 [0x29e6cc]
ifnet_detach_protocol 13 + 1603 [0x31a281]
msleep 13 + 157 [0x486eef]
activering 13 + 334 [0x4867fc]
lck_mtx_sleep 13 + 87 [0x221948]
thread_block 13 + 33 [0x227184]
thread_block_reason 13 + 331 [0x2270f6]
thread_dispatch 13 + 1966 [0x226e57]
machine_switch_context 13 + 753 [0x2a6a27]
Draad df10000
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad df1a3d4
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad df1ab7c
De stapel van de pit:
call_continuation 13 + 28 [0x29e6cc]
13 com.apple.driver.AppleIntelCPUPowerManagement 105.10.0 +
22427 [0x11d879b]
13 IOLockSleep + 39 [0x52b2ab]
lck_mtx_sleep 13 + 87 [0x221948]
thread_block 13 + 33 [0x227184]
thread_block_reason 13 + 331 [0x2270f6]
thread_dispatch 13 + 1966 [0x226e57]
machine_switch_context 13 + 753 [0x2a6a27]
Draad df1b3d4
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad df1c3d4
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad df1cb7c
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad df1d3d4
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad df1db7c
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad df1e3d4
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad df1e7a8
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad df1eb7c
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad df1f000
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad df1fb7c
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad df203d4
De stapel van de pit:
call_continuation 13 + 28 [0x29e6cc]
13 com.apple.driver.AppleIntelCPUPowerManagement 105.10.0 +
22427 [0x11d879b]
13 IOLockSleep + 39 [0x52b2ab]
lck_mtx_sleep 13 + 87 [0x221948]
thread_block 13 + 33 [0x227184]
thread_block_reason 13 + 331 [0x2270f6]
thread_dispatch 13 + 1966 [0x226e57]
machine_switch_context 13 + 753 [0x2a6a27]
Draad df25b7c
De stapel van de pit:
call_continuation 13 + 28 [0x29e6cc]
13 com.apple.driver.AppleIntelCPUPowerManagement 105.10.0 +
22427 [0x11d879b]
13 IOLockSleep + 39 [0x52b2ab]
lck_mtx_sleep 13 + 87 [0x221948]
thread_block 13 + 33 [0x227184]
thread_block_reason 13 + 331 [0x2270f6]
thread_dispatch 13 + 1966 [0x226e57]
machine_switch_context 13 + 753 [0x2a6a27]
Draad df4f3d4
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad df4fb7c
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad e398b7c
De stapel van de pit:
call_continuation 13 + 28 [0x29e6cc]
13 com.apple.filesystems.autofs 2.1.0 + 24145 [0x1478e51]
msleep 13 + 157 [0x486eef]
activering 13 + 286 [0x4867cc]
lck_mtx_sleep_deadline 13 + 104 [0x221340]
thread_block 13 + 33 [0x227184]
thread_block_reason 13 + 331 [0x2270f6]
thread_dispatch 13 + 1966 [0x226e57]
machine_switch_context 13 + 753 [0x2a6a27]
Draad e5283d4
De stapel van de pit:
vm_pageout_internal_start 13 + 80 [0x2751b3]
Draad e8e3000
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad e8e33d4
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad e9657a8
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad e965b7c
De stapel van de pit:
13 IOWorkLoop:: threadMain () + 0 [0x547cbe]
Draad ecab000
De stapel van de pit:
13 thread_call_initialize + 663 [0x22fa9b]
Model: MacBookPro6,2, Boot-ROM MBP61.0057.B09, 2 bewerkers, de Kern van Intel
i7, 2.66 GHz, 8 GB, SMC 1.58f16
Grafiek: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
Grafiek: De Grafiek van Intel HD, de Ingebouwde Grafiek van Intel HD, 288 MB
De Module van het geheugen: global_name
Luchthaven: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93),
Broadcom BCM43xx 1.0 (5.10.131.16 .1)
Bluetooth: Versie 2.3.3f8, de 2 dienst, 19 apparaten, inkomende periodieke havens 1
Het Apparaat van Serial ATA: ST9500420ASG, 465.76 GB
Het Apparaat van Serial ATA: MATSHITADVD-R UJ-898
Apparaat USB: Hub, 0x0424 (SMSC), 0x2514, 0xfd100000
Apparaat USB: Ingebouwde iSight, 0x05ac (Inc. van Apple), 0x8507, 0xfd110000
Apparaat USB: De Ontvanger van IRL, 0x05ac (Inc. van Apple), 0x8242, 0xfd120000
Apparaat USB: Hub, 0x0424 (SMSC), 0x2514, 0xfa100000
Apparaat USB: Het Interne Toetsenbord van Apple/Trackpad, 0x05ac (Inc. van Apple),
0x0236, 0xfa120000
Apparaat USB: De interne Lezer van de Kaart van het Geheugen, 0x05ac (Inc. van Apple), 0x8403,
0xfa130000
Apparaat USB: BRCM2070 hub, 0x0a5c (Broadcom Corp.), 0x4500, 0xfa110000
Apparaat USB: Het Controlemechanisme van de Gastheer van Bluetooth USB, 0x05ac (Inc. van Apple),
0x8218, 0xfa113000
|