Jet runtime has detected unrecoverable error ошибка

![](http://www.saxonica.com/img/saxonica_logo.gif) *Welcome to the Saxonica developer community site.* The bug trackers and forums for all Saxon editions (HE, PE, and EE) on all platforms (Java, .NET, C) as well as Saxon-JS are hosted on this site. By registering on this site, you give consent for Saxonica Ltd to hold and process any personal data that you post on the site. Your profile information is available only to Saxonica, but any messages that you post are available to everyone (whether they are registered users or not). You also accept that the site will send you email notifications, based on the preferences that you select in your profile. For more information on Saxonica's privacy policies and GDPR compliance, see http://www.saxonica.com/. When you post code fragments on this site, then unless clearly specified otherwise, you implicitly give Saxonica Ltd license to use these code fragments in its test suite; and if the code fragments represent suggested changes to the code of a Saxonica product, to use the code fragments in future versions of the product. Saxonica takes no responsibility for the content of messages posted by registered users, but reserves the right to delete inappropriate material or to remove users from the site if they are causing a nuisance. *Useful Links* * "Main bug tracker":https://saxonica.plan.io/projects/saxon * "Saxonica homepage":http://www.saxonica.com/ * "Saxon documentation":http://www.saxonica.com/documentation * "Sourceforge project page":https://sourceforge.net/projects/saxon/ * "Michael Kay Blog":http://dev.saxonica.com/blog/mike

Thanks for letting us know about this. We will work with the Jet developers to diagnose the problem and find a workaround or resolution. I suspect we will need a repro (that is, a complete and runnable application that demonstrates the problem, ideally as small as possible.)

Please check that you have added the reference of the saxon extension module in the php.ini file. See the instructions below:

Create a module conf file: nano /etc/php.d/saxon.ini and add contents:

configuration for php Saxon HE/PE/EE module extension=saxon.so save the file.

Enable the module for PHP: php5enmod saxon

Alternatively, You can update the php.ini file (using Centos it is usually in the location ‘/etc/’) to contain the PHP extension.

Insert the following in the Dynamic Extensions section: extension=saxon.so, then run the command:

sudo service httpd restart

I hope this helps. Kind regards,

  • Status changed from New to AwaitingInfo
  • Found in version set to 1.0.0

The line in the php.ini file about saxon extension is:

extension=/usr/lib/Saxonica/Saxon.C.API/modules/saxon.so

And not always but most of the time I see the error, which means saxon module is working I guess?

I have been testing the code, and I have noticed that even when I comment out the whole code except this line:

$saxonProc = new SaxonSaxonProcessor();

İt gives the same error.

  • Status changed from AwaitingInfo to In Progress

I have managed to reproduce the error you are getting on my centos machine when I run the php script in a browser. It works fine when I run on the commandline.

PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib/php/modules/saxon.so' - libsaxonhec.so: cannot enable executable stack as shared object requires: Permission denied in Unknown on line 0

[Tue Mar 15 01:24:36 2016] [notice] Apache/2.2.15 (Unix) DAV/2 PHP/5.4.45 configured -- resuming normal operations
[Tue Mar 15 01:24:40 2016] [error] [client ::1] PHP Fatal error:  Class 'Saxon\SaxonProcessor' not found in /var/www/html/saxon.php on line 18

I will investigate the issue and report back shortly.

  • Status changed from In Progress to AwaitingInfo

The root cause of the error you received is because of SELinux is enforced/enabled on your machine.

One solution is to disable the SELinux by opening the file /etc/selinux/config and changing “SELINUX=enforcing” to “SELINUX=disabled”. A reboot is required.

However, in terms of security on your system this might be a bad option. See manual on SELinux: https://wiki.centos.org/HowTos/SELinux

A better solution is to change the security context of the Saxon libraries using the command chcon.

On my system I had to do the following:

Ran:

ls -alZ /usr/lib

What was of interest was for most of the libraries it states «system_u:object_r:lib_t» wheras for libsaxonhec.so it was «unconfined_u:object_r:lib_t:s0». I changed this to the following:

chcon system_u:object_r:lib_t:s0 /usr/lib/libsaxonhec.so

Similar change required for the php saxon module:

chcon system_u:object_r:lib_t:s0 /usr/lib/php/modules/saxon.so

Also please ensure the environment variable LD_LIBRARY_PATH has been set in /etc/sysconfig/httpd (for Centos). For a 32-bit machine add the following at the end of the file:

export LD_LIBRARY_PATH=/usr/lib/rt/lib/i386:/usr/lib/rt/lib/i386/jetvm:$LD_LIBRARY_PATH

I will add details of this in the troubleshooting section on our website.

  • File jet_err_2493.txt jet_err_2493.txt added

When I run chcon commands, error changed to

JET RUNTIME HAS DETECTED UNRECOVERABLE ERROR: system exception at 0x00b105d5

Please, contact the vendor of the application.

Extra information about error is saved in the «/tmp/jet_err_2493.txt» file.

Fatal Error: Crash during termination.

  • Status changed from AwaitingInfo to In Progress

Update:

There still seems to be an underlying problem here. The page seems to load as normal. But if we inspect the apache error log file it shows up the same Jet message mentioned in comment #0. I have reproduced it on my ubuntu machine so will be investigating what is happening.

  • Status changed from In Progress to Resolved
  • % Done changed from 0 to 100

Bug fixed and committed to subversion.

The problem was because of the multiple HTTP PHP requests in Saxon/C we get more than one call of the methods JNI_CreateJavaVM and finalizeJavaRT. We should only call these methods ones in the same process.

The fix was to prevent multiple calls to these JVM methods by using static variables, similar to what was done in Saxon/C 0.3.1.

Fix will be available in the next maintenance release.

  • Status changed from Resolved to In Progress

When the PHP MSHUTDOWN is called a seg error is thrown. The SaxonProcessor release method seems not to be in a clean state. Investigating the issue now.

  • Status changed from In Progress to Resolved

The MSHUTDOWN problem is in related. We have removed the release method call as it is not needed.

  • Status changed from Resolved to Closed

Bug fix applied in the Saxon/C 1.0.1 maintenance release.

Содержание

  1. JET RUNTIME HAS DETECTED UNRECOVERABLE ERROR #3
  2. Question & Answer
  3. Question
  4. Answer
  5. Issue
  6. Environment
  7. Solutions
  8. Saxon » SaxonC
  9. Support #2670
  10. JET RUNTIME HAS DETECTED UNRECOVERABLE ERROR: system exception at 0x009165e9
  11. Обновлено Michael Kay почти 7 года назад
  12. Обновлено O’Neil Delpratt почти 7 года назад
  13. Обновлено O’Neil Delpratt почти 7 года назад
  14. Обновлено O’Neil Delpratt почти 7 года назад
  15. Обновлено Duygu Colak почти 7 года назад
  16. Обновлено Duygu Colak почти 7 года назад
  17. Обновлено O’Neil Delpratt почти 7 года назад
  18. Обновлено O’Neil Delpratt почти 7 года назад
  19. Обновлено O’Neil Delpratt почти 7 года назад
  20. Обновлено Duygu Colak почти 7 года назад
  21. Обновлено O’Neil Delpratt почти 7 года назад
  22. Обновлено O’Neil Delpratt почти 7 года назад
  23. Обновлено O’Neil Delpratt почти 7 года назад
  24. Обновлено O’Neil Delpratt почти 7 года назад
  25. Обновлено O’Neil Delpratt почти 7 года назад
  26. CrossOver Support — Community Forums
  27. CodeWeavers
  28. CrossOver Support — Community Forums
  29. CodeWeavers

JET RUNTIME HAS DETECTED UNRECOVERABLE ERROR #3

Question & Answer

Question

JET RUNTIME HAS DETECTED UNRECOVERABLE ERROR #3

Answer

Issue

The Aspera Enterprise Server/Connect Server/Point to Point/Client application might encounter the following error:

This problem is caused by a mismatched DLL (dynamic link-library).

Environment

  • Product: Enterprise Server Connect Server Point to Point Aspera Client
  • Operating System: Windows

Solutions

One reason for this error can be an incomplete upgrade of the Aspera product (some DLLs might have been in use and not upgraded). To rectify the problem uninstall the Aspera product manually delete the bin and lib directories from the Aspera installation directory (C:Program Files (x86)Aspera

A second possible reason for this error is bad system DLLs as a result of using an antivirus system such as McAffee Symantec Sophos etc. These packages replace system DLLs with their own version. To rectify you have to uninstall the antivirus package and make sure the problem no longer occurs. It is not sufficient to turn off the antivirus services (because the bad DLLs will still be present on the system). Please note that uninstalling the antivirus can leave the Windows computer in a pretty bad state — this happens for example if you ran Windows system updates while using the antivirus and the update didn’t correctly install all the necessary DLLs. This is an unfortunate reality of antiviruses on Windows systems and there is nothing the Aspera application can do to avoid it.

Источник

Saxon » SaxonC

Support #2670

JET RUNTIME HAS DETECTED UNRECOVERABLE ERROR: system exception at 0x009165e9

Описание

I get this error from my php application and when the error occures, at the same time user sees «No data received Unable to load the web page because the server sent no data.» error on Google Chrome. What does the error mean, and how can I fix it?

Full Error Line in apache log file: JET RUNTIME HAS DETECTED UNRECOVERABLE ERROR: system exception at 0x009165e9

Please, contact the vendor of the application.

Extra information about error is saved in the «/tmp/jet_err_28301.txt» file.

Fatal Error: Crash during termination.

Related jet_err_28301.txt file is in the attachment.

Файлы

jet_err_28301.txt (44,4 КБ) jet_err_28301.txt Duygu Colak, 2016-03-10 10:43
jet_err_2493.txt (37,5 КБ) jet_err_2493.txt Duygu Colak, 2016-03-15 14:04

Обновлено Michael Kay почти 7 года назад

Thanks for letting us know about this. We will work with the Jet developers to diagnose the problem and find a workaround or resolution. I suspect we will need a repro (that is, a complete and runnable application that demonstrates the problem, ideally as small as possible.)

Обновлено O’Neil Delpratt почти 7 года назад

Please check that you have added the reference of the saxon extension module in the php.ini file. See the instructions below:

Create a module conf file: nano /etc/php.d/saxon.ini and add contents:

configuration for php Saxon HE/PE/EE module extension=saxon.so save the file.

Enable the module for PHP: php5enmod saxon

Alternatively, You can update the php.ini file (using Centos it is usually in the location ‘/etc/’) to contain the PHP extension.

Insert the following in the Dynamic Extensions section: extension=saxon.so, then run the command:

sudo service httpd restart

I hope this helps. Kind regards,

Обновлено O’Neil Delpratt почти 7 года назад

  • Параметр Статус изменился с New на AwaitingInfo

Обновлено O’Neil Delpratt почти 7 года назад

  • Параметр Found in version изменился на 1.0.0

Обновлено Duygu Colak почти 7 года назад

The line in the php.ini file about saxon extension is:

And not always but most of the time I see the error, which means saxon module is working I guess?

Обновлено Duygu Colak почти 7 года назад

I have been testing the code, and I have noticed that even when I comment out the whole code except this line:

$saxonProc = new SaxonSaxonProcessor();

İt gives the same error.

Обновлено O’Neil Delpratt почти 7 года назад

  • Параметр Статус изменился с AwaitingInfo на In Progress

I have managed to reproduce the error you are getting on my centos machine when I run the php script in a browser. It works fine when I run on the commandline.

I will investigate the issue and report back shortly.

Обновлено O’Neil Delpratt почти 7 года назад

  • Параметр Статус изменился с In Progress на AwaitingInfo

The root cause of the error you received is because of SELinux is enforced/enabled on your machine.

One solution is to disable the SELinux by opening the file /etc/selinux/config and changing “SELINUX=enforcing” to “SELINUX=disabled”. A reboot is required.

However, in terms of security on your system this might be a bad option. See manual on SELinux: https://wiki.centos.org/HowTos/SELinux

A better solution is to change the security context of the Saxon libraries using the command chcon.

On my system I had to do the following:

What was of interest was for most of the libraries it states «system_u:object_r:lib_t» wheras for libsaxonhec.so it was «unconfined_u:object_r:lib_t:s0». I changed this to the following:

Similar change required for the php saxon module:

Also please ensure the environment variable LD_LIBRARY_PATH has been set in /etc/sysconfig/httpd (for Centos). For a 32-bit machine add the following at the end of the file:

Обновлено O’Neil Delpratt почти 7 года назад

I will add details of this in the troubleshooting section on our website.

Обновлено Duygu Colak почти 7 года назад

When I run chcon commands, error changed to

JET RUNTIME HAS DETECTED UNRECOVERABLE ERROR: system exception at 0x00b105d5

Please, contact the vendor of the application.

Extra information about error is saved in the «/tmp/jet_err_2493.txt» file.

Fatal Error: Crash during termination.

Обновлено O’Neil Delpratt почти 7 года назад

  • Параметр Статус изменился с AwaitingInfo на In Progress

There still seems to be an underlying problem here. The page seems to load as normal. But if we inspect the apache error log file it shows up the same Jet message mentioned in comment #0. I have reproduced it on my ubuntu machine so will be investigating what is happening.

Обновлено O’Neil Delpratt почти 7 года назад

  • Параметр Статус изменился с In Progress на Resolved
  • Параметр Готовность изменился с на 100

Bug fixed and committed to subversion.

The problem was because of the multiple HTTP PHP requests in Saxon/C we get more than one call of the methods JNI_CreateJavaVM and finalizeJavaRT. We should only call these methods ones in the same process.

The fix was to prevent multiple calls to these JVM methods by using static variables, similar to what was done in Saxon/C 0.3.1.

Fix will be available in the next maintenance release.

Обновлено O’Neil Delpratt почти 7 года назад

  • Параметр Статус изменился с Resolved на In Progress

When the PHP MSHUTDOWN is called a seg error is thrown. The SaxonProcessor release method seems not to be in a clean state. Investigating the issue now.

Обновлено O’Neil Delpratt почти 7 года назад

  • Параметр Статус изменился с In Progress на Resolved

The MSHUTDOWN problem is in related. We have removed the release method call as it is not needed.

Обновлено O’Neil Delpratt почти 7 года назад

  • Параметр Статус изменился с Resolved на Closed

Bug fix applied in the Saxon/C 1.0.1 maintenance release.

Источник

The following comments are owned by whoever posted them. We are not responsible for them in any way.

Having issues with a phone system programmer on specific machines, appears to revolve around screen resolution. The program works just fine on Macs that don’t have the newer 4K displays, however, I receive the following error on newer machines:

JET RUNTIME HAS DETECTED UNRECOVERABLE ERROR: system exception at 0x4cf5e055
Please, contact the vendor of the application. Extra information about error is saved in the «jet_err_60.txt» file

Can’t find the text file, and don’t know where to start with the error code.

Is there a package that I can install so the newer machines can run the program without crashing, or setting to change, or a file that I could modify to force a set resolution?

Thanks in advance

Please Note: This Forum is for non-application specific questions relating to installation/configuration of CrossOver. All application-specific posts to this Forum will be moved to their appropriate Compatibility Center Forum.

CrossOver Forums: the place to discuss running Windows applications on Mac and Linux

Getting Around

CodeWeavers

We’re rebels. We’re misfits. But mostly, we’re software liberators. And we’re very, very good at what we do. We have to be. Lots of developers work with open source, but only a tiny fraction of those are good enough to get software that was designed for one platform to work on another one. We invented CrossOver software — a unique approach to cross-platform compatibility that does not require dual-boot or another OS license. We launched PortJump to help app and game developers broaden their market beyond Windows® users. And we launched ExecMode to help organizations solve really ugly technical challenges.

Источник

The following comments are owned by whoever posted them. We are not responsible for them in any way.

Having issues with a phone system programmer on specific machines, appears to revolve around screen resolution. The program works just fine on Macs that don’t have the newer 4K displays, however, I receive the following error on newer machines:

JET RUNTIME HAS DETECTED UNRECOVERABLE ERROR: system exception at 0x4cf5e055
Please, contact the vendor of the application. Extra information about error is saved in the «jet_err_60.txt» file

Can’t find the text file, and don’t know where to start with the error code.

Is there a package that I can install so the newer machines can run the program without crashing, or setting to change, or a file that I could modify to force a set resolution?

Thanks in advance

Please Note: This Forum is for non-application specific questions relating to installation/configuration of CrossOver. All application-specific posts to this Forum will be moved to their appropriate Compatibility Center Forum.

CrossOver Forums: the place to discuss running Windows applications on Mac and Linux

Getting Around

CodeWeavers

We’re rebels. We’re misfits. But mostly, we’re software liberators. And we’re very, very good at what we do. We have to be. Lots of developers work with open source, but only a tiny fraction of those are good enough to get software that was designed for one platform to work on another one. We invented CrossOver software — a unique approach to cross-platform compatibility that does not require dual-boot or another OS license. We launched PortJump to help app and game developers broaden their market beyond Windows® users. And we launched ExecMode to help organizations solve really ugly technical challenges.

Источник

Question

JET RUNTIME HAS DETECTED UNRECOVERABLE ERROR #3

Answer

by Serban Simu

Issue

The Aspera Enterprise Server/Connect Server/Point to Point/Client application might encounter the following error:

JET RUNTIME HAS DETECTED UNRECOVERABLE ERROR #3

This problem is caused by a mismatched DLL (dynamic link-library).

Environment

  • Product: Enterprise Server Connect Server Point to Point Aspera Client
  • Operating System: Windows

Solutions

One reason for this error can be an incomplete upgrade of the Aspera product (some DLLs might have been in use and not upgraded). To rectify the problem uninstall the Aspera product manually delete the bin and lib directories from the Aspera installation directory (C:Program Files (x86)Aspera<Product>) and reinstall.

A second possible reason for this error is bad system DLLs as a result of using an antivirus system such as McAffee Symantec Sophos etc. These packages replace system DLLs with their own version. To rectify you have to uninstall the antivirus package and make sure the problem no longer occurs. It is not sufficient to turn off the antivirus services (because the bad DLLs will still be present on the system). Please note that uninstalling the antivirus can leave the Windows computer in a pretty bad state — this happens for example if you ran Windows system updates while using the antivirus and the update didn’t correctly install all the necessary DLLs. This is an unfortunate reality of antiviruses on Windows systems and there is nothing the Aspera application can do to avoid it.

[{«Business Unit»:{«code»:»BU053″,»label»:»Cloud & Data Platform»},»Product»:{«code»:»SSL85S»,»label»:»IBM Aspera High-Speed Transfer Server (HSTS)»},»Component»:»»,»Platform»:[{«code»:»PF025″,»label»:»Platform Independent»}],»Version»:»All Versions»,»Edition»:»»,»Line of Business»:{«code»:»LOB45″,»label»:»Automation»}}]

This segmentation fail error is being intercepted by Jet. The root cause is probably Saxon/C trying to re-initialize the Jet JVM. Jet prevents JVM initialisation in the same process.

On 6 Apr 2016, at 04:17, WillMac29 notifications@github.com wrote:

php validatorExamples.php
PHP Warning: Module ‘Saxon/C’ already loaded in Unknown on line 0

Warning: Module ‘Saxon/C’ already loaded in Unknown on line 0

http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd%22%3E

Saxon/C API design use cases

PHP Schema Validation in Saxon/C examples
Saxon Processor version: HE 9.6.0.9
exampleSimple1:

JET RUNTIME HAS DETECTED UNRECOVERABLE ERROR: system exception at 0x00007f851edf0108
Please, contact the vendor of the application.
Extra information about error is saved in the «jet_err_4782.txt» file.

Signal 11 (SIGSEGV)
siginfo: si_signo 11, si_errno 0, si_code 1, si_addr 0x0000000000000007

PID 4782, TID 0x00007f853f086780

Registers:

RAX = 0x0000000000000000
RBX = 0x0000000000000000
RCX = 0x0000000000000001
RDX = 0x0000000000000000
RSI = 0xfffffffffffffffe
RDI = 0x00007f8540e09ac0
RBP = 0x00007fff45246f48
RSP = 0x00007fff45246e70
R8 = 0x0000000000000000
R9 = 0x00007f8540e09ac0
R10 = 0x0000000000000000
R11 = 0x0000000000000000
R12 = 0x00007fff45246f20
R13 = 0x0000000000000000
R14 = 0x00007f8540e09ac0
R15 = 0x00007f7c0c1321d9
RIP = 0x00007f851edf0108 (/usr/lib/rt/jetrt/libXKRN11008065.so+0xa58108)

Stack:

0x00007fff45246e70: 0x00007f8540ca0c89 0x00007f8529fbcba6
0x00007fff45246e80: 0x00007fff45246f48 0x0000003000000018
0x00007fff45246e90: 0x00007fff45246f60 0x00007fff45246ea0
0x00007fff45246ea0: 0x0000000000000001 0x00007f8540e09ac0
0x00007fff45246eb0: 0x00007f851f498758 0x00007fff45246f28
0x00007fff45246ec0: 0x00007fff45246e98 0x00007f8540e09ac0
0x00007fff45246ed0: 0x00007f8540be7b60 0x00007f8540be7b70
0x00007fff45246ee0: 0x0000000000000000 0x00007f7c0c0801d9
0x00007fff45246ef0: 0x0000000000000000 0x00007fff45246b78
0x00007fff45246f00: 0x00007f8540be7b70 0x00007f8540be7b60
0x00007fff45246f10: 0x00007f8537ed74c0 0x0000000000000000
0x00007fff45246f20: 0x00007f7c0c1321d9 0x00007f8540e09ac0
0x00007fff45246f30: 0x0000000000000000 0x00007fff45247010
0x00007fff45246f40: 0x00007fff45246ff0 0x0000000000000000
0x00007fff45246f50: 0x00007f8540ca0c89 0x00007f8529fbb25b
0x00007fff45246f60: 0x00007fff45247070 0x00007f8540eb5029
0x00007fff45246f70: 0x00007fff45246fc0 0x00007fff45247060
0x00007fff45246f80: 0x00007fff45246fd8 0x00007f851edec49d
0x00007fff45246f90: 0x0000000000000000 0x00007fff45246ff8
0x00007fff45246fa0: 0x00007f8500000000 0x00007f7c0c0f4da9
0x00007fff45246fb0: 0x0000000000000000 0x0000000000000000
0x00007fff45246fc0: 0x00007f7c0c149e59 0x00007f8540eb4f40
0x00007fff45246fd0: 0x00007f852a1dc290 0x0000000000000000
0x00007fff45246fe0: 0x00007f7c0c1583b9 0x00007f8529fcac66
0x00007fff45246ff0: 0x00007f8540eb5428 0x0000003000000018
0x00007fff45247000: 0x00007f85307863d8 0x00007fff45247010
0x00007fff45247010: 0x00007f8540eb5428 0x00007f851f498758
0x00007fff45247020: 0x00007f8540e09ac0 0x00007f7c0c0d0339
0x00007fff45247030: 0x00007f7c0c1583b9 0x0000000000000000
0x00007fff45247040: 0x00007f8540be7b70 0x0000000000000000
0x00007fff45247050: 0x00007f7c0c0801d9 0x0000000000000000
0x00007fff45247060: 0x00007fff45246b78 0x00007f8540be7b70

Instructions:

0x00007f851edf00f8: 83 c1 01 48 85 d2 75 05 49 89 d0 eb 03 49 89 c8
(pc) 0x00007f851edf0108: 4d 8b 40 07 49 83 e0 fe 4d 85 c0 74 04 49 83 c0

Version Information:

Java version: 1.8.0_65
Excelsior JET 11.00 Professional edition
JET Profile: Java SE version: 1.8.0_65; JET update level: 8; CPU architecture: amd64
Runtime: Desktop
CPU features: cmov mmx sse sse2 sse3 ssse3 sse4.1 sse4.2 popcnt cx8 cx16
Application was deployed

Options and system properties:

-Djet.gc.heaplimit=0
-Djet.stack.trace=

Entry point type: Invocation API

Command line: «/usr/sbin/apache2» «-k» «start»

OS:

Ubuntu 14.04.3 LTS
Linux 3.16.0-38-generic #52~14.04.1-Ubuntu SMP Fri May 8 09:43:57 UTC 2015 x86_64
glibc 2.19

Shared libraries:

7f7c0ad87000-7f7c0ad88000 —p 00000000 00:00 0
7f7c0ad88000-7f7c0ad8a000 rwxp 00000000 00:00 0
7f7c0ad8a000-7f7c0ad8b000 —p 00000000 00:00 0
7f7c0ad8b000-7f7c0ae67000 rwxp 00000000 00:00 0 [stack:4903]
7f7c0ae67000-7f7c0ae68000 —p 00000000 00:00 0
7f7c0ae68000-7f7c0ae6a000 rwxp 00000000 00:00 0
7f7c0ae6a000-7f7c0ae6b000 —p 00000000 00:00 0
7f7c0ae6b000-7f7c0af47000 rwxp 00000000 00:00 0 [stack:4902]
7f7c0af47000-7f7c0af48000 —p 00000000 00:00 0
7f7c0af48000-7f7c0af4a000 rwxp 00000000 00:00 0
7f7c0af4a000-7f7c0af4b000 —p 00000000 00:00 0
7f7c0af4b000-7f7c0b027000 rwxp 00000000 00:00 0 [stack:4901]
7f7c0b027000-7f7c0b028000 —p 00000000 00:00 0
7f7c0b028000-7f7c0b02a000 rwxp 00000000 00:00 0
7f7c0b02a000-7f7c0b02b000 —p 00000000 00:00 0
7f7c0b02b000-7f7c0b107000 rwxp 00000000 00:00 0 [stack:4900]
7f7c0b107000-7f7c0b11f000 r-xp 00000000 08:01 929075 /usr/lib/rt/lib/amd64/libzip.so
7f7c0b11f000-7f7c0b31e000 —p 00018000 08:01 929075 /usr/lib/rt/lib/amd64/libzip.so
7f7c0b31e000-7f7c0b31f000 r—p 00017000 08:01 929075 /usr/lib/rt/lib/amd64/libzip.so
7f7c0b31f000-7f7c0b320000 rw-p 00018000 08:01 929075 /usr/lib/rt/lib/amd64/libzip.so
7f7c0b320000-7f7c0b33a000 r-xp 00000000 08:01 929066 /usr/lib/rt/lib/amd64/libjava.so
7f7c0b33a000-7f7c0b539000 —p 0001a000 08:01 929066 /usr/lib/rt/lib/amd64/libjava.so
7f7c0b539000-7f7c0b53a000 r—p 00019000 08:01 929066 /usr/lib/rt/lib/amd64/libjava.so
7f7c0b53a000-7f7c0b53b000 rw-p 0001a000 08:01 929066 /usr/lib/rt/lib/amd64/libjava.so
7f7c0b53b000-7f7c0b53c000 rw-p 00000000 00:00 0
7f7c0b53c000-7f7c0b541000 r-xp 00000000 08:01 929089 /usr/lib/rt/lib/amd64/jetvm/libjvm.so
7f7c0b541000-7f7c0b740000 —p 00005000 08:01 929089 /usr/lib/rt/lib/amd64/jetvm/libjvm.so
7f7c0b740000-7f7c0b741000 r—p 00004000 08:01 929089 /usr/lib/rt/lib/amd64/jetvm/libjvm.so
7f7c0b741000-7f7c0b742000 rw-p 00005000 08:01 929089 /usr/lib/rt/lib/amd64/jetvm/libjvm.so
7f7c0b742000-7f7c0b744000 —p 00000000 00:00 0
7f7c0b744000-7f7c0c198000 rw-p 00000000 00:00 0
7f7c0c198000-7f80746b0000 —p 00000000 00:00 0
7f80746b0000-7f8074709000 rw-p 00000000 00:00 0
7f8074709000-7f84dcd48000 —p 00000000 00:00 0
7f84dcd48000-7f84dcd59000 rw-p 00000000 00:00 0
7f84dcd59000-7f851cd59000 —p 00000000 00:00 0
7f851cd59000-7f851cd5a000 —p 00000000 00:00 0
7f851cd5a000-7f851d55a000 rwxp 00000000 00:00 0
7f851d55a000-7f851d55b000 r—p 00000000 08:01 929030 /usr/lib/rt/jetrt/libXXML11008065.so
7f851d55b000-7f851dd6a000 r-xp 00001000 08:01 929030 /usr/lib/rt/jetrt/libXXML11008065.so
7f851dd6a000-7f851e07f000 rw-p 00810000 08:01 929030 /usr/lib/rt/jetrt/libXXML11008065.so
7f851e07f000-7f851e151000 rw-p 00000000 00:00 0
7f851e151000-7f851e2ca000 r—p 00b25000 08:01 929030 /usr/lib/rt/jetrt/libXXML11008065.so
7f851e2ca000-7f851e2d3000 rw-p 00c9e000 08:01 929030 /usr/lib/rt/jetrt/libXXML11008065.so
7f851e2d3000-7f851e32a000 r—p 00ca7000 08:01 929030 /usr/lib/rt/jetrt/libXXML11008065.so
7f851e32a000-7f851e32b000 rw-p 00cfe000 08:01 929030 /usr/lib/rt/jetrt/libXXML11008065.so
7f851e32b000-7f851e32c000 r-xp 00cff000 08:01 929030 /usr/lib/rt/jetrt/libXXML11008065.so
7f851e32c000-7f851e394000 r—p 00d00000 08:01 929030 /usr/lib/rt/jetrt/libXXML11008065.so
7f851e394000-7f851e395000 rw-p 00d68000 08:01 929030 /usr/lib/rt/jetrt/libXXML11008065.so
7f851e395000-7f851e398000 r—p 00d69000 08:01 929030 /usr/lib/rt/jetrt/libXXML11008065.so
7f851e398000-7f851e399000 r—p 00000000 08:01 929046 /usr/lib/rt/jetrt/libXKRN11008065.so
7f851e399000-7f851ef62000 r-xp 00001000 08:01 929046 /usr/lib/rt/jetrt/libXKRN11008065.so
7f851ef62000-7f851f32e000 rw-p 00bca000 08:01 929046 /usr/lib/rt/jetrt/libXKRN11008065.so
7f851f32e000-7f851f521000 rw-p 00000000 00:00 0
7f851f521000-7f851fe86000 r—p 00f96000 08:01 929046 /usr/lib/rt/jetrt/libXKRN11008065.so
7f851fe86000-7f851fe87000 rw-p 018fb000 08:01 929046 /usr/lib/rt/jetrt/libXKRN11008065.so
7f851fe87000-7f851ff21000 r—p 018fc000 08:01 929046 /usr/lib/rt/jetrt/libXKRN11008065.so
7f851ff21000-7f851ff22000 rw-p 01996000 08:01 929046 /usr/lib/rt/jetrt/libXKRN11008065.so
7f851ff22000-7f851ff23000 r-xp 01997000 08:01 929046 /usr/lib/rt/jetrt/libXKRN11008065.so
7f851ff23000-7f851fffc000 r—p 01998000 08:01 929046 /usr/lib/rt/jetrt/libXKRN11008065.so
7f851fffc000-7f851fffd000 rw-p 01a71000 08:01 929046 /usr/lib/rt/jetrt/libXKRN11008065.so
7f851fffd000-7f8520000000 r—p 01a72000 08:01 929046 /usr/lib/rt/jetrt/libXKRN11008065.so
7f8520000000-7f8524000000 rw-s 00000000 00:04 19664 /dev/zero (deleted)
7f8524000000-7f8524021000 rw-p 00000000 00:00 0
7f8524021000-7f8528000000 —p 00000000 00:00 0
7f85280d6000-7f8528117000 rw-p 00000000 00:00 0
7f8528138000-7f8528139000 —p 00000000 00:00 0
7f8528139000-7f852813b000 rwxp 00000000 00:00 0
7f852813b000-7f852813c000 —p 00000000 00:00 0
7f852813c000-7f8528154000 rwxp 00000000 00:00 0 [stack:4899]
7f8528154000-7f85282c4000 rw-p 00000000 00:00 0
7f85282c4000-7f8528354000 —p 00000000 00:00 0
7f8528354000-7f852835b000 r-xp 00000000 08:01 3805521 /lib/x86_64-linux-gnu/librt-2.19.so
7f852835b000-7f852855a000 —p 00007000 08:01 3805521 /lib/x86_64-linux-gnu/librt-2.19.so
7f852855a000-7f852855b000 r—p 00006000 08:01 3805521 /lib/x86_64-linux-gnu/librt-2.19.so
7f852855b000-7f852855c000 rw-p 00007000 08:01 3805521 /lib/x86_64-linux-gnu/librt-2.19.so
7f852855c000-7f852855d000 r—p 00000000 08:01 929037 /usr/lib/rt/jetrt/libXNAM11008065.so
7f852855d000-7f852866a000 r-xp 00001000 08:01 929037 /usr/lib/rt/jetrt/libXNAM11008065.so
7f852866a000-7f85286a1000 rw-p 0010e000 08:01 929037 /usr/lib/rt/jetrt/libXNAM11008065.so
7f85286a1000-7f85286ba000 rw-p 00000000 00:00 0
7f85286ba000-7f85286e8000 r—p 00145000 08:01 929037 /usr/lib/rt/jetrt/libXNAM11008065.so
7f85286e8000-7f85286ec000 rw-p 00173000 08:01 929037 /usr/lib/rt/jetrt/libXNAM11008065.so
7f85286ec000-7f85286f4000 r—p 00177000 08:01 929037 /usr/lib/rt/jetrt/libXNAM11008065.so
7f85286f4000-7f85286f5000 rw-p 0017f000 08:01 929037 /usr/lib/rt/jetrt/libXNAM11008065.so
7f85286f5000-7f85286f6000 r-xp 00180000 08:01 929037 /usr/lib/rt/jetrt/libXNAM11008065.so
7f85286f6000-7f8528707000 r—p 00181000 08:01 929037 /usr/lib/rt/jetrt/libXNAM11008065.so
7f8528707000-7f8528708000 rw-p 00192000 08:01 929037 /usr/lib/rt/jetrt/libXNAM11008065.so
7f8528708000-7f852870b000 r—p 00193000 08:01 929037 /usr/lib/rt/jetrt/libXNAM11008065.so
7f852870b000-7f852870c000 r—p 00000000 08:01 929040 /usr/lib/rt/jetrt/libXSEC11008065.so
7f852870c000-7f85289b8000 r-xp 00001000 08:01 929040 /usr/lib/rt/jetrt/libXSEC11008065.so
7f85289b8000-7f8528a90000 rw-p 002ad000 08:01 929040 /usr/lib/rt/jetrt/libXSEC11008065.so
7f8528a90000-7f8528ad4000 rw-p 00000000 00:00 0
7f8528ad4000-7f8528b58000 r—p 00385000 08:01 929040 /usr/lib/rt/jetrt/libXSEC11008065.so
7f8528b58000-7f8528b66000 rw-p 00409000 08:01 929040 /usr/lib/rt/jetrt/libXSEC11008065.so
7f8528b66000-7f8528b7c000 r—p 00417000 08:01 929040 /usr/lib/rt/jetrt/libXSEC11008065.so
7f8528b7c000-7f8528b7d000 rw-p 0042d000 08:01 929040 /usr/lib/rt/jetrt/libXSEC11008065.so
7f8528b7d000-7f8528b7e000 r-xp 0042e000 08:01 929040 /usr/lib/rt/jetrt/libXSEC11008065.so
7f8528b7e000-7f8528ba7000 r—p 0042f000 08:01 929040 /usr/lib/rt/jetrt/libXSEC11008065.so
7f8528ba7000-7f8528ba8000 rw-p 00458000 08:01 929040 /usr/lib/rt/jetrt/libXSEC11008065.so
7f8528ba8000-7f8528bab000 r—p 00459000 08:01 929040 /usr/lib/rt/jetrt/libXSEC11008065.so
7f8528bab000-7f8528bac000 r—p 00000000 08:11 17564244 /home/will/Desktop/drive/saxon/Saxonica/Saxon-HEC1.0.0/libsaxonhec.so
7f8528bac000-7f8529001000 r-xp 00001000 08:11 17564244 /home/will/Desktop/drive/saxon/Saxonica/Saxon-HEC1.0.0/libsaxonhec.so
7f8529001000-7f85291bd000 rw-p 00456000 08:11 17564244 /home/will/Desktop/drive/saxon/Saxonica/Saxon-HEC1.0.0/libsaxonhec.so
7f85291bd000-7f8529245000 rw-p 00000000 00:00 0
7f8529245000-7f852972a000 r—p 00612000 08:11 17564244 /home/will/Desktop/drive/saxon/Saxonica/Saxon-HEC1.0.0/libsaxonhec.so
7f852972a000-7f8529731000 rw-p 00af7000 08:11 17564244 /home/will/Desktop/drive/saxon/Saxonica/Saxon-HEC1.0.0/libsaxonhec.so
7f8529731000-7f852975d000 r—p 00afe000 08:11 17564244 /home/will/Desktop/drive/saxon/Saxonica/Saxon-HEC1.0.0/libsaxonhec.so
7f852975d000-7f852975e000 rw-p 00b2a000 08:11 17564244 /home/will/Desktop/drive/saxon/Saxonica/Saxon-HEC1.0.0/libsaxonhec.so
7f852975e000-7f852975f000 r-xp 00b2b000 08:11 17564244 /home/will/Desktop/drive/saxon/Saxonica/Saxon-HEC1.0.0/libsaxonhec.so
7f852975f000-7f85297a0000 r—p 00b2c000 08:11 17564244 /home/will/Desktop/drive/saxon/Saxonica/Saxon-HEC1.0.0/libsaxonhec.so
7f85297a0000-7f85297a1000 rw-p 00b6d000 08:11 17564244 /home/will/Desktop/drive/saxon/Saxonica/Saxon-HEC1.0.0/libsaxonhec.so
7f85297a1000-7f85297a4000 r—p 00b6e000 08:11 17564244 /home/will/Desktop/drive/saxon/Saxonica/Saxon-HEC1.0.0/libsaxonhec.so
7f85297a4000-7f85297a5000 —p 00000000 00:00 0
7f85297a5000-7f8529fa5000 rwxp 00000000 00:00 0 [stack:4896]
7f8529fa5000-7f8529fda000 r-xp 00000000 08:01 801332 /usr/lib/php5/20131226/saxon.so
7f8529fda000-7f852a1d9000 —p 00035000 08:01 801332 /usr/lib/php5/20131226/saxon.so
7f852a1d9000-7f852a1da000 r—p 00034000 08:01 801332 /usr/lib/php5/20131226/saxon.so
7f852a1da000-7f852a1dc000 rw-p 00035000 08:01 801332 /usr/lib/php5/20131226/saxon.so
7f852a1dc000-7f852a1dd000 rw-p 00000000 00:00 0
7f852a1dd000-7f852a1fb000 r-xp 00000000 08:01 801349 /usr/lib/php5/20131226/pgsql.so
7f852a1fb000-7f852a3fb000 —p 0001e000 08:01 801349 /usr/lib/php5/20131226/pgsql.so
7f852a3fb000-7f852a3ff000 r—p 0001e000 08:01 801349 /usr/lib/php5/20131226/pgsql.so
7f852a3ff000-7f852a400000 rw-p 00022000 08:01 801349 /usr/lib/php5/20131226/pgsql.so
7f852a400000-7f852a42c000 r-xp 00000000 08:01 808637 /usr/lib/x86_64-linux-gnu/libpq.so.5.8
7f852a42c000-7f852a62c000 —p 0002c000 08:01 808637 /usr/lib/x86_64-linux-gnu/libpq.so.5.8
7f852a62c000-7f852a62f000 r—p 0002c000 08:01 808637 /usr/lib/x86_64-linux-gnu/libpq.so.5.8
7f852a62f000-7f852a630000 rw-p 0002f000 08:01 808637 /usr/lib/x86_64-linux-gnu/libpq.so.5.8
7f852a630000-7f852a639000 r-xp 00000000 08:01 801350 /usr/lib/php5/20131226/pdo_pgsql.so
7f852a639000-7f852a839000 —p 00009000 08:01 801350 /usr/lib/php5/20131226/pdo_pgsql.so
7f852a839000-7f852a83a000 r—p 00009000 08:01 801350 /usr/lib/php5/20131226/pdo_pgsql.so
7f852a83a000-7f852a83b000 rw-p 0000a000 08:01 801350 /usr/lib/php5/20131226/pdo_pgsql.so
7f852a83b000-7f852a842000 r-xp 00000000 08:01 804035 /usr/lib/php5/20131226/pdo_mysql.so
7f852a842000-7f852aa41000 —p 00007000 08:01 804035 /usr/lib/php5/20131226/pdo_mysql.so
7f852aa41000-7f852aa42000 r—p 00006000 08:01 804035 /usr/lib/php5/20131226/pdo_mysql.so
7f852aa42000-7f852aa43000 rw-p 00007000 08:01 804035 /usr/lib/php5/20131226/pdo_mysql.so
7f852aa43000-7f852aa63000 r-xp 00000000 08:01 801333 /usr/lib/php5/20131226/mysqli.so
7f852aa63000-7f852ac62000 —p 00020000 08:01 801333 /usr/lib/php5/20131226/mysqli.so
7f852ac62000-7f852ac67000 r—p 0001f000 08:01 801333 /usr/lib/php5/20131226/mysqli.so
7f852ac67000-7f852ac68000 rw-p 00024000 08:01 801333 /usr/lib/php5/20131226/mysqli.so
7f852ac68000-7f852af18000 r-xp 00000000 08:01 792249 /usr/lib/x86_64-linux-gnu/libmysqlclient.so.18.0.0
7f852af18000-7f852b118000 —p 002b0000 08:01 792249 /usr/lib/x86_64-linux-gnu/libmysqlclient.so.18.0.0
7f852b118000-7f852b11d000 r—p 002b0000 08:01 792249 /usr/lib/x86_64-linux-gnu/libmysqlclient.so.18.0.0
7f852b11d000-7f852b19b000 rw-p 002b5000 08:01 792249 /usr/lib/x86_64-linux-gnu/libmysqlclient.so.18.0.0
7f852b19b000-7f852b1a0000 rw-p 00000000 00:00 0
7f852b1a0000-7f852b1ac000 r-xp 00000000 08:01 801721 /usr/lib/php5/20131226/mysql.so
7f852b1ac000-7f852b3ab000 —p 0000c000 08:01 801721 /usr/lib/php5/20131226/mysql.so
7f852b3ab000-7f852b3ad000 r—p 0000b000 08:01 801721 /usr/lib/php5/20131226/mysql.so
7f852b3ad000-7f852b3ae000 rw-p 0000d000 08:01 801721 /usr/lib/php5/20131226/mysql.so
7f852b3ae000-7f852b3de000 r-xp 00000000 08:01 808405 /usr/lib/x86_64-linux-gnu/libmemcached.so.11.0.0
7f852b3de000-7f852b5dd000 —p 00030000 08:01 808405 /usr/lib/x86_64-linux-gnu/libmemcached.so.11.0.0
7f852b5dd000-7f852b5de000 r—p 0002f000 08:01 808405 /usr/lib/x86_64-linux-gnu/libmemcached.so.11.0.0
7f852b5de000-7f852b5df000 rw-p 00030000 08:01 808405 /usr/lib/x86_64-linux-gnu/libmemcached.so.11.0.0
7f852b5df000-7f852b5f4000 r-xp 00000000 08:01 797974 /usr/lib/php5/20131226/memcached.so
7f852b5f4000-7f852b7f3000 —p 00015000 08:01 797974 /usr/lib/php5/20131226/memcached.so
7f852b7f3000-7f852b7f6000 r—p 00014000 08:01 797974 /usr/lib/php5/20131226/memcached.so
7f852b7f6000-7f852b7f7000 rw-p 00017000 08:01 797974 /usr/lib/php5/20131226/memcached.so
7f852b7f7000-7f852b80e000 r-xp 00000000 08:01 798146 /usr/lib/php5/20131226/memcache.so
7f852b80e000-7f852ba0e000 —p 00017000 08:01 798146 /usr/lib/php5/20131226/memcache.so
7f852ba0e000-7f852ba0f000 r—p 00017000 08:01 798146 /usr/lib/php5/20131226/memcache.so
7f852ba0f000-7f852ba10000 rw-p 00018000 08:01 798146 /usr/lib/php5/20131226/memcache.so
7f852ba10000-7f852ba3a000 r-xp 00000000 08:01 797977 /usr/lib/libmcrypt.so.4.4.8
7f852ba3a000-7f852bc3a000 —p 0002a000 08:01 797977 /usr/lib/libmcrypt.so.4.4.8
7f852bc3a000-7f852bc3c000 r—p 0002a000 08:01 797977 /usr/lib/libmcrypt.so.4.4.8
7f852bc3c000-7f852bc3e000 rw-p 0002c000 08:01 797977 /usr/lib/libmcrypt.so.4.4.8
7f852bc3e000-7f852bc44000 rw-p 00000000 00:00 0
7f852bc44000-7f852bc4d000 r-xp 00000000 08:01 801340 /usr/lib/php5/20131226/mcrypt.so
7f852bc4d000-7f852be4d000 —p 00009000 08:01 801340 /usr/lib/php5/20131226/mcrypt.so
7f852be4d000-7f852be4f000 r—p 00009000 08:01 801340 /usr/lib/php5/20131226/mcrypt.so
7f852be4f000-7f852be50000 rw-p 0000b000 08:01 801340 /usr/lib/php5/20131226/mcrypt.so
7f852be50000-7f852be5a000 r-xp 00000000 08:01 3805432 /lib/x86_64-linux-gnu/libjson-c.so.2.0.0
7f852be5a000-7f852c059000 —p 0000a000 08:01 3805432 /lib/x86_64-linux-gnu/libjson-c.so.2.0.0
7f852c059000-7f852c05a000 r—p 00009000 08:01 3805432 /lib/x86_64-linux-gnu/libjson-c.so.2.0.0
7f852c05a000-7f852c05b000 rw-p 0000a000 08:01 3805432 /lib/x86_64-linux-gnu/libjson-c.so.2.0.0
7f852c05b000-7f852c063000 r-xp 00000000 08:01 795014 /usr/lib/php5/20131226/json.so
7f852c063000-7f852c263000 —p 00008000 08:01 795014 /usr/lib/php5/20131226/json.so
7f852c263000-7f852c264000 r—p 00008000 08:01 795014 /usr/lib/php5/20131226/json.so
7f852c264000-7f852c265000 rw-p 00009000 08:01 795014 /usr/lib/php5/20131226/json.so
7f852c265000-7f852d8d1000 r-xp 00000000 08:01 792235 /usr/lib/x86_64-linux-gnu/libicudata.so.52.1
7f852d8d1000-7f852dad0000 —p 0166c000 08:01 792235 /usr/lib/x86_64-linux-gnu/libicudata.so.52.1
7f852dad0000-7f852dad1000 r—p 0166b000 08:01 792235 /usr/lib/x86_64-linux-gnu/libicudata.so.52.1
7f852dad1000-7f852dad2000 rw-p 0166c000 08:01 792235 /usr/lib/x86_64-linux-gnu/libicudata.so.52.1
7f852dad2000-7f852dadd000 r-xp 00000000 08:01 792237 /usr/lib/x86_64-linux-gnu/libicuio.so.52.1
7f852dadd000-7f852dcdd000 —p 0000b000 08:01 792237 /usr/lib/x86_64-linux-gnu/libicuio.so.52.1
7f852dcdd000-7f852dcdf000 r—p 0000b000 08:01 792237 /usr/lib/x86_64-linux-gnu/libicuio.so.52.1
7f852dcdf000-7f852dce0000 rw-p 0000d000 08:01 792237 /usr/lib/x86_64-linux-gnu/libicuio.so.52.1
7f852dce0000-7f852de44000 r-xp 00000000 08:01 792233 /usr/lib/x86_64-linux-gnu/libicuuc.so.52.1
7f852de44000-7f852e043000 —p 00164000 08:01 792233 /usr/lib/x86_64-linux-gnu/libicuuc.so.52.1
7f852e043000-7f852e054000 r—p 00163000 08:01 792233 /usr/lib/x86_64-linux-gnu/libicuuc.so.52.1
7f852e054000-7f852e055000 rw-p 00174000 08:01 792233 /usr/lib/x86_64-linux-gnu/libicuuc.so.52.1
7f852e055000-7f852e059000 rw-p 00000000 00:00 0
7f852e059000-7f852e251000 r-xp 00000000 08:01 792232 /usr/lib/x86_64-linux-gnu/libicui18n.so.52.1
7f852e251000-7f852e451000 —p 001f8000 08:01 792232 /usr/lib/x86_64-linux-gnu/libicui18n.so.52.1
7f852e451000-7f852e45e000 r—p 001f8000 08:01 792232 /usr/lib/x86_64-linux-gnu/libicui18n.so.52.1
7f852e45e000-7f852e45f000 rw-p 00205000 08:01 792232 /usr/lib/x86_64-linux-gnu/libicui18n.so.52.1
7f852e45f000-7f852e460000 rw-p 00000000 00:00 0
7f852e460000-7f852e4b9000 r-xp 00000000 08:01 798143 /usr/lib/php5/20131226/intl.so
7f852e4b9000-7f852e6b8000 —p 00059000 08:01 798143 /usr/lib/php5/20131226/intl.so
7f852e6b8000-7f852e6be000 r—p 00058000 08:01 798143 /usr/lib/php5/20131226/intl.so
7f852e6be000-7f852e6c2000 rw-p 0005e000 08:01 798143 /usr/lib/php5/20131226/intl.so
7f852e6c2000-7f852e6c3000 rw-p 00000000 00:00 0
7f852e6c3000-7f852e7c9000 r-xp 00000000 08:01 3805423 /lib/x86_64-linux-gnu/libglib-2.0.so.0.4002.0
7f852e7c9000-7f852e9c8000 —p 00106000 08:01 3805423 /lib/x86_64-linux-gnu/libglib-2.0.so.0.4002.0
7f852e9c8000-7f852e9c9000 r—p 00105000 08:01 3805423 /lib/x86_64-linux-gnu/libglib-2.0.so.0.4002.0
7f852e9c9000-7f852e9ca000 rw-p 00106000 08:01 3805423 /lib/x86_64-linux-gnu/libglib-2.0.so.0.4002.0
7f852e9ca000-7f852e9cb000 rw-p 00000000 00:00 0
7f852e9cb000-7f852e9d4000 r-xp 00000000 08:01 796353 /usr/lib/x86_64-linux-gnu/libltdl.so.7.3.0
7f852e9d4000-7f852ebd3000 —p 00009000 08:01 796353 /usr/lib/x86_64-linux-gnu/libltdl.so.7.3.0
7f852ebd3000-7f852ebd4000 r—p 00008000 08:01 796353 /usr/lib/x86_64-linux-gnu/libltdl.so.7.3.0
7f852ebd4000-7f852ebd5000 rw-p 00009000 08:01 796353 /usr/lib/x86_64-linux-gnu/libltdl.so.7.3.0
7f852ebd5000-7f852ebe6000 r-xp 00000000 08:01 795636 /usr/lib/x86_64-linux-gnu/libXext.so.6.4.0
7f852ebe6000-7f852ede5000 —p 00011000 08:01 795636 /usr/lib/x86_64-linux-gnu/libXext.so.6.4.0
7f852ede5000-7f852ede6000 r—p 00010000 08:01 795636 /usr/lib/x86_64-linux-gnu/libXext.so.6.4.0
7f852ede6000-7f852ede7000 rw-p 00011000 08:01 795636 /usr/lib/x86_64-linux-gnu/libXext.so.6.4.0
7f852ede7000-7f852efce000 r-xp 00000000 08:01 795956 /usr/lib/x86_64-linux-gnu/libfftw3.so.3.3.2
7f852efce000-7f852f1cd000 —p 001e7000 08:01 795956 /usr/lib/x86_64-linux-gnu/libfftw3.so.3.3.2
7f852f1cd000-7f852f1de000 r—p 001e6000 08:01 795956 /usr/lib/x86_64-linux-gnu/libfftw3.so.3.3.2
7f852f1de000-7f852f1df000 rw-p 001f7000 08:01 795956 /usr/lib/x86_64-linux-gnu/libfftw3.so.3.3.2
7f852f1df000-7f852f1f6000 r-xp 00000000 08:01 795033 /usr/lib/x86_64-linux-gnu/liblqr-1.so.0.3.1
7f852f1f6000-7f852f3f5000 —p 00017000 08:01 795033 /usr/lib/x86_64-linux-gnu/liblqr-1.so.0.3.1
7f852f3f5000-7f852f3f6000 r—p 00016000 08:01 795033 /usr/lib/x86_64-linux-gnu/liblqr-1.so.0.3.1
7f852f3f6000-7f852f3f7000 rw-p 00017000 08:01 795033 /usr/lib/x86_64-linux-gnu/liblqr-1.so.0.3.1
7f852f3f7000-7f852f447000 r-xp 00000000 08:01 796340 /usr/lib/x86_64-linux-gnu/liblcms2.so.2.0.6
7f852f447000-7f852f647000 —p 00050000 08:01 796340 /usr/lib/x86_64-linux-gnu/liblcms2.so.2.0.6
7f852f647000-7f852f648000 r—p 00050000 08:01 796340 /usr/lib/x86_64-linux-gnu/liblcms2.so.2.0.6
7f852f648000-7f852f64c000 rw-p 00051000 08:01 796340 /usr/lib/x86_64-linux-gnu/liblcms2.so.2.0.6
7f852f64c000-7f852f64d000 rw-p 00000000 00:00 0
7f852f64d000-7f852f65a000 r-xp 00000000 08:01 787054 /usr/lib/x86_64-linux-gnu/libgomp.so.1.0.0
7f852f65a000-7f852f85a000 —p 0000d000 08:01 787054 /usr/lib/x86_64-linux-gnu/libgomp.so.1.0.0
7f852f85a000-7f852f85b000 r—p 0000d000 08:01 787054 /usr/lib/x86_64-linux-gnu/libgomp.so.1.0.0
7f852f85b000-7f852f85c000 rw-p 0000e000 08:01 787054 /usr/lib/x86_64-linux-gnu/libgomp.so.1.0.0
7f852f85c000-7f852fa8a000 r-xp 00000000 08:01 795039 /usr/lib/x86_64-linux-gnu/libMagickCore.so.5.0.0
7f852fa8a000-7f852fc8a000 —p 0022e000 08:01 795039 /usr/lib/x86_64-linux-gnu/libMagickCore.so.5.0.0
7f852fc8a000-7f852fc9c000 r—p 0022e000 08:01 795039 /usr/lib/x86_64-linux-gnu/libMagickCore.so.5.0.0
7f852fc9c000-7f852fcda000 rw-p 00240000 08:01 795039 /usr/lib/x86_64-linux-gnu/libMagickCore.so.5.0.0
7f852fcda000-7f852fcfb000 rw-p 00000000 00:00 0
7f852fcfb000-7f852fe0b000 r-xp 00000000 08:01 797963 /usr/lib/x86_64-linux-gnu/libMagickWand.so.5.0.0
7f852fe0b000-7f853000a000 —p 00110000 08:01 797963 /usr/lib/x86_64-linux-gnu/libMagickWand.so.5.0.0
7f853000a000-7f853000b000 r—p 0010f000 08:01 797963 /usr/lib/x86_64-linux-gnu/libMagickWand.so.5.0.0
7f853000b000-7f853000f000 rw-p 00110000 08:01 797963 /usr/lib/x86_64-linux-gnu/libMagickWand.so.5.0.0
7f853000f000-7f853005f000 r-xp 00000000 08:01 804032 /usr/lib/php5/20131226/imagick.so
7f853005f000-7f853025e000 —p 00050000 08:01 804032 /usr/lib/php5/20131226/imagick.so
7f853025e000-7f8530267000 r—p 0004f000 08:01 804032 /usr/lib/php5/20131226/imagick.so
7f8530267000-7f853026d000 rw-p 00058000 08:01 804032 /usr/lib/php5/20131226/imagick.so
7f853026d000-7f8530283000 r-xp 00000000 08:01 3805419 /lib/x86_64-linux-gnu/libgcc_s.so.1
7f8530283000-7f8530482000 —p 00016000 08:01 3805419 /lib/x86_64-linux-gnu/libgcc_s.so.1
7f8530482000-7f8530483000 rw-p 00015000 08:01 3805419 /lib/x86_64-linux-gnu/libgcc_s.so.1
7f8530483000-7f8530569000 r-xp 00000000 08:01 791522 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.19
7f8530569000-7f8530768000 —p 000e6000 08:01 791522 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.19
7f8530768000-7f8530770000 r—p 000e5000 08:01 791522 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.19
7f8530770000-7f8530772000 rw-p 000ed000 08:01 791522 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.19
7f8530772000-7f8530787000 rw-p 00000000 00:00 0
7f8530787000-7f85308fd000 r-xp 00000000 08:01 801378 /usr/lib/libgeos-3.4.2.so
7f85308fd000-7f8530afd000 —p 00176000 08:01 801378 /usr/lib/libgeos-3.4.2.so
7f8530afd000-7f8530b0a000 r—p 00176000 08:01 801378 /usr/lib/libgeos-3.4.2.so
7f8530b0a000-7f8530b0b000 rw-p 00183000 08:01 801378 /usr/lib/libgeos-3.4.2.so
7f8530b0b000-7f8530b2e000 r-xp 00000000 08:01 801379 /usr/lib/libgeos_c.so.1.8.2
7f8530b2e000-7f8530d2d000 —p 00023000 08:01 801379 /usr/lib/libgeos_c.so.1.8.2
7f8530d2d000-7f8530d2e000 r—p 00022000 08:01 801379 /usr/lib/libgeos_c.so.1.8.2
7f8530d2e000-7f8530d2f000 rw-p 00023000 08:01 801379 /usr/lib/libgeos_c.so.1.8.2
7f8530d2f000-7f8530d3f000 r-xp 00000000 08:01 803919 /usr/lib/php5/20131226/geos.so
7f8530d3f000-7f8530f3e000 —p 00010000 08:01 803919 /usr/lib/php5/20131226/geos.so
7f8530f3e000-7f8530f3f000 r—p 0000f000 08:01 803919 /usr/lib/php5/20131226/geos.so
7f8530f3f000-7f8530f41000 rw-p 00010000 08:01 803919 /usr/lib/php5/20131226/geos.so
7f8530f41000-7f8530f46000 r-xp 00000000 08:01 795634 /usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0
7f8530f46000-7f8531145000 —p 00005000 08:01 795634 /usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0
7f8531145000-7f8531146000 r—p 00004000 08:01 795634 /usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0
7f8531146000-7f8531147000 rw-p 00005000 08:01 795634 /usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0
7f8531147000-7f8531149000 r-xp 00000000 08:01 795621 /usr/lib/x86_64-linux-gnu/libXau.so.6.0.0
7f8531149000-7f8531349000 —p 00002000 08:01 795621 /usr/lib/x86_64-linux-gnu/libXau.so.6.0.0
7f8531349000-7f853134a000 r—p 00002000 08:01 795621 /usr/lib/x86_64-linux-gnu/libXau.so.6.0.0
7f853134a000-7f853134b000 rw-p 00003000 08:01 795621 /usr/lib/x86_64-linux-gnu/libXau.so.6.0.0
7f853134b000-7f8531368000 r-xp 00000000 08:01 796874 /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0
7f8531368000-7f8531568000 —p 0001d000 08:01 796874 /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0
7f8531568000-7f8531569000 r—p 0001d000 08:01 796874 /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0
7f8531569000-7f853156a000 rw-p 0001e000 08:01 796874 /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0
7f853156a000-7f8531575000 r-xp 00000000 08:01 796321 /usr/lib/x86_64-linux-gnu/libjbig.so.0
7f8531575000-7f8531774000 —p 0000b000 08:01 796321 /usr/lib/x86_64-linux-gnu/libjbig.so.0
7f8531774000-7f8531775000 r—p 0000a000 08:01 796321 /usr/lib/x86_64-linux-gnu/libjbig.so.0
7f8531775000-7f8531778000 rw-p 0000b000 08:01 796321 /usr/lib/x86_64-linux-gnu/libjbig.so.0
7f8531778000-7f85318a8000 r-xp 00000000 08:01 795615 /usr/lib/x86_64-linux-gnu/libX11.so.6.3.0
7f85318a8000-7f8531aa8000 —p 00130000 08:01 795615 /usr/lib/x86_64-linux-gnu/libX11.so.6.3.0
7f8531aa8000-7f8531aa9000 r—p 00130000 08:01 795615 /usr/lib/x86_64-linux-gnu/libX11.so.6.3.0
7f8531aa9000-7f8531aad000 rw-p 00131000 08:01 795615 /usr/lib/x86_64-linux-gnu/libX11.so.6.3.0
7f8531aad000-7f8531b1b000 r-xp 00000000 08:01 796742 /usr/lib/x86_64-linux-gnu/libtiff.so.5.2.0
7f8531b1b000-7f8531d1b000 —p 0006e000 08:01 796742 /usr/lib/x86_64-linux-gnu/libtiff.so.5.2.0
7f8531d1b000-7f8531d1c000 r—p 0006e000 08:01 796742 /usr/lib/x86_64-linux-gnu/libtiff.so.5.2.0
7f8531d1c000-7f8531d1f000 rw-p 0006f000 08:01 796742 /usr/lib/x86_64-linux-gnu/libtiff.so.5.2.0
7f8531d1f000-7f8531eb7000 r-xp 00000000 08:01 796801 /usr/lib/x86_64-linux-gnu/libvpx.so.1.3.0
7f8531eb7000-7f85320b6000 —p 00198000 08:01 796801 /usr/lib/x86_64-linux-gnu/libvpx.so.1.3.0
7f85320b6000-7f85320b8000 rw-p 00197000 08:01 796801 /usr/lib/x86_64-linux-gnu/libvpx.so.1.3.0
7f85320b8000-7f85320fe000 rw-p 00000000 00:00 0
7f85320fe000-7f8532138000 r-xp 00000000 08:01 795991 /usr/lib/x86_64-linux-gnu/libfontconfig.so.1.8.0
7f8532138000-7f8532337000 —p 0003a000 08:01 795991 /usr/lib/x86_64-linux-gnu/libfontconfig.so.1.8.0
7f8532337000-7f8532339000 r—p 00039000 08:01 795991 /usr/lib/x86_64-linux-gnu/libfontconfig.so.1.8.0
7f8532339000-7f853233a000 rw-p 0003b000 08:01 795991 /usr/lib/x86_64-linux-gnu/libfontconfig.so.1.8.0
7f853233a000-7f85323d7000 r-xp 00000000 08:01 791451 /usr/lib/x86_64-linux-gnu/libfreetype.so.6.11.1
7f85323d7000-7f85325d6000 —p 0009d000 08:01 791451 /usr/lib/x86_64-linux-gnu/libfreetype.so.6.11.1
7f85325d6000-7f85325dc000 r—p 0009c000 08:01 791451 /usr/lib/x86_64-linux-gnu/libfreetype.so.6.11.1
7f85325dc000-7f85325dd000 rw-p 000a2000 08:01 791451 /usr/lib/x86_64-linux-gnu/libfreetype.so.6.11.1
7f85325dd000-7f8532602000 r-xp 00000000 08:01 3805383 /lib/x86_64-linux-gnu/libpng12.so.0.50.0
7f8532602000-7f8532801000 —p 00025000 08:01 3805383 /lib/x86_64-linux-gnu/libpng12.so.0.50.0
7f8532801000-7f8532802000 r—p 00024000 08:01 3805383 /lib/x86_64-linux-gnu/libpng12.so.0.50.0
7f8532802000-7f8532803000 rw-p 00025000 08:01 3805383 /lib/x86_64-linux-gnu/libpng12.so.0.50.0
7f8532803000-7f8532846000 r-xp 00000000 08:01 796323 /usr/lib/x86_64-linux-gnu/libjpeg.so.8.0.2
7f8532846000-7f8532a46000 —p 00043000 08:01 796323 /usr/lib/x86_64-linux-gnu/libjpeg.so.8.0.2
7f8532a46000-7f8532a47000 r—p 00043000 08:01 796323 /usr/lib/x86_64-linux-gnu/libjpeg.so.8.0.2
7f8532a47000-7f8532a48000 rw-p 00044000 08:01 796323 /usr/lib/x86_64-linux-gnu/libjpeg.so.8.0.2
7f8532a48000-7f8532a58000 rw-p 00000000 00:00 0
7f8532a58000-7f8532a69000 r-xp 00000000 08:01 795654 /usr/lib/x86_64-linux-gnu/libXpm.so.4.11.0
7f8532a69000-7f8532c68000 —p 00011000 08:01 795654 /usr/lib/x86_64-linux-gnu/libXpm.so.4.11.0
7f8532c68000-7f8532c69000 r—p 00010000 08:01 795654 /usr/lib/x86_64-linux-gnu/libXpm.so.4.11.0
7f8532c69000-7f8532c6a000 rw-p 00011000 08:01 795654 /usr/lib/x86_64-linux-gnu/libXpm.so.4.11.0
7f8532c6a000-7f8532cab000 r-xp 00000000 08:01 796042 /usr/lib/x86_64-linux-gnu/libgd.so.3.0.0
7f8532cab000-7f8532eab000 —p 00041000 08:01 796042 /usr/lib/x86_64-linux-gnu/libgd.so.3.0.0
7f8532eab000-7f8532eb1000 r—p 00041000 08:01 796042 /usr/lib/x86_64-linux-gnu/libgd.so.3.0.0
7f8532eb1000-7f8532ed0000 rw-p 00047000 08:01 796042 /usr/lib/x86_64-linux-gnu/libgd.so.3.0.0
7f8532ed0000-7f8532ed5000 rw-p 00000000 00:00 0
7f8532ed5000-7f8532eeb000 r-xp 00000000 08:01 798145 /usr/lib/php5/20131226/gd.so
7f8532eeb000-7f85330ea000 —p 00016000 08:01 798145 /usr/lib/php5/20131226/gd.so
7f85330ea000-7f85330ef000 r—p 00015000 08:01 798145 /usr/lib/php5/20131226/gd.so
7f85330ef000-7f85330f0000 rw-p 0001a000 08:01 798145 /usr/lib/php5/20131226/gd.so
7f85330f0000-7f85331a4000 r-xp 00000000 08:01 787385 /usr/lib/x86_64-linux-gnu/libsqlite3.so.0.8.6
7f85331a4000-7f85333a4000 —p 000b4000 08:01 787385 /usr/lib/x86_64-linux-gnu/libsqlite3.so.0.8.6
7f85333a4000-7f85333a6000 r—p 000b4000 08:01 787385 /usr/lib/x86_64-linux-gnu/libsqlite3.so.0.8.6
7f85333a6000-7f85333a8000 rw-p 000b6000 08:01 787385 /usr/lib/x86_64-linux-gnu/libsqlite3.so.0.8.6
7f85333a8000-7f85333a9000 rw-p 00000000 00:00 0
7f85333a9000-7f85333ee000 r-xp 00000000 08:01 796271 /usr/lib/x86_64-linux-gnu/libhx509.so.5.0.0
7f85333ee000-7f85335ed000 —p 00045000 08:01 796271 /usr/lib/x86_64-linux-gnu/libhx509.so.5.0.0
7f85335ed000-7f85335ef000 r—p 00044000 08:01 796271 /usr/lib/x86_64-linux-gnu/libhx509.so.5.0.0
7f85335ef000-7f85335f1000 rw-p 00046000 08:01 796271 /usr/lib/x86_64-linux-gnu/libhx509.so.5.0.0
7f85335f1000-7f85335f2000 rw-p 00000000 00:00 0
7f85335f2000-7f85335ff000 r-xp 00000000 08:01 796263 /usr/lib/x86_64-linux-gnu/libheimbase.so.1.0.0
7f85335ff000-7f85337fe000 —p 0000d000 08:01 796263 /usr/lib/x86_64-linux-gnu/libheimbase.so.1.0.0
7f85337fe000-7f85337ff000 r—p 0000c000 08:01 796263 /usr/lib/x86_64-linux-gnu/libheimbase.so.1.0.0
7f85337ff000-7f8533800000 rw-p 0000d000 08:01 796263 /usr/lib/x86_64-linux-gnu/libheimbase.so.1.0.0
7f8533800000-7f8533827000 r-xp 00000000 08:01 796825 /usr/lib/x86_64-linux-gnu/libwind.so.0.0.0
7f8533827000-7f8533a27000 —p 00027000 08:01 796825 /usr/lib/x86_64-linux-gnu/libwind.so.0.0.0
7f8533a27000-7f8533a28000 r—p 00027000 08:01 796825 /usr/lib/x86_64-linux-gnu/libwind.so.0.0.0
7f8533a28000-7f8533a29000 rw-p 00028000 08:01 796825 /usr/lib/x86_64-linux-gnu/libwind.so.0.0.0
7f8533a29000-7f8533a30000 r-xp 00000000 08:01 786479 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.1
7f8533a30000-7f8533c2f000 —p 00007000 08:01 786479 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.1
7f8533c2f000-7f8533c30000 r—p 00006000 08:01 786479 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.1
7f8533c30000-7f8533c31000 rw-p 00007000 08:01 786479 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.1
7f8533c31000-7f8533c45000 r-xp 00000000 08:01 796621 /usr/lib/x86_64-linux-gnu/libroken.so.18.1.0
7f8533c45000-7f8533e44000 —p 00014000 08:01 796621 /usr/lib/x86_64-linux-gnu/libroken.so.18.1.0
7f8533e44000-7f8533e45000 r—p 00013000 08:01 796621 /usr/lib/x86_64-linux-gnu/libroken.so.18.1.0
7f8533e45000-7f8533e46000 rw-p 00014000 08:01 796621 /usr/lib/x86_64-linux-gnu/libroken.so.18.1.0
7f8533e46000-7f8533e76000 r-xp 00000000 08:01 796259 /usr/lib/x86_64-linux-gnu/libhcrypto.so.4.1.0
7f8533e76000-7f8534076000 —p 00030000 08:01 796259 /usr/lib/x86_64-linux-gnu/libhcrypto.so.4.1.0
7f8534076000-7f8534077000 r—p 00030000 08:01 796259 /usr/lib/x86_64-linux-gnu/libhcrypto.so.4.1.0
7f8534077000-7f8534078000 rw-p 00031000 08:01 796259 /usr/lib/x86_64-linux-gnu/libhcrypto.so.4.1.0
7f8534078000-7f8534079000 rw-p 00000000 00:00 0
7f8534079000-7f8534116000 r-xp 00000000 08:01 795709 /usr/lib/x86_64-linux-gnu/libasn1.so.8.0.0
7f8534116000-7f8534316000 —p 0009d000 08:01 795709 /usr/lib/x86_64-linux-gnu/libasn1.so.8.0.0
7f8534316000-7f8534317000 r—p 0009d000 08:01 795709 /usr/lib/x86_64-linux-gnu/libasn1.so.8.0.0
7f8534317000-7f853431a000 rw-p 0009e000 08:01 795709 /usr/lib/x86_64-linux-gnu/libasn1.so.8.0.0
7f853431a000-7f853439c000 r-xp 00000000 08:01 796331 /usr/lib/x86_64-linux-gnu/libkrb5.so.26.0.0
7f853439c000-7f853459b000 —p 00082000 08:01 796331 /usr/lib/x86_64-linux-gnu/libkrb5.so.26.0.0
7f853459b000-7f853459e000 r—p 00081000 08:01 796331 /usr/lib/x86_64-linux-gnu/libkrb5.so.26.0.0
7f853459e000-7f85345a1000 rw-p 00084000 08:01 796331 /usr/lib/x86_64-linux-gnu/libkrb5.so.26.0.0
7f85345a1000-7f85345a2000 rw-p 00000000 00:00 0
7f85345a2000-7f85345aa000 r-xp 00000000 08:01 796265 /usr/lib/x86_64-linux-gnu/libheimntlm.so.0.1.0
7f85345aa000-7f85347a9000 —p 00008000 08:01 796265 /usr/lib/x86_64-linux-gnu/libheimntlm.so.0.1.0
7f85347a9000-7f85347aa000 r—p 00007000 08:01 796265 /usr/lib/x86_64-linux-gnu/libheimntlm.so.0.1.0
7f85347aa000-7f85347ab000 rw-p 00008000 08:01 796265 /usr/lib/x86_64-linux-gnu/libheimntlm.so.0.1.0
7f85347ab000-7f85347ad000 r-xp 00000000 08:01 3805435 /lib/x86_64-linux-gnu/libkeyutils.so.1.4
7f85347ad000-7f85349ad000 —p 00002000 08:01 3805435 /lib/x86_64-linux-gnu/libkeyutils.so.1.4
7f85349ad000-7f85349ae000 r—p 00002000 08:01 3805435 /lib/x86_64-linux-gnu/libkeyutils.so.1.4
7f85349ae000-7f85349af000 rw-p 00003000 08:01 3805435 /lib/x86_64-linux-gnu/libkeyutils.so.1.4
7f85349af000-7f85349b3000 r-xp 00000000 08:01 3805425 /lib/x86_64-linux-gnu/libgpg-error.so.0.10.0
7f85349b3000-7f8534bb2000 —p 00004000 08:01 3805425 /lib/x86_64-linux-gnu/libgpg-error.so.0.10.0
7f8534bb2000-7f8534bb3000 r—p 00003000 08:01 3805425 /lib/x86_64-linux-gnu/libgpg-error.so.0.10.0
7f8534bb3000-7f8534bb4000 rw-p 00004000 08:01 3805425 /lib/x86_64-linux-gnu/libgpg-error.so.0.10.0
7f8534bb4000-7f8534bef000 r-xp 00000000 08:01 796526 /usr/lib/x86_64-linux-gnu/libp11-kit.so.0.0.0
7f8534bef000-7f8534dee000 —p 0003b000 08:01 796526 /usr/lib/x86_64-linux-gnu/libp11-kit.so.0.0.0
7f8534dee000-7f8534df4000 r—p 0003a000 08:01 796526 /usr/lib/x86_64-linux-gnu/libp11-kit.so.0.0.0
7f8534df4000-7f8534df6000 rw-p 00040000 08:01 796526 /usr/lib/x86_64-linux-gnu/libp11-kit.so.0.0.0
7f8534df6000-7f8534e08000 r-xp 00000000 08:01 796717 /usr/lib/x86_64-linux-gnu/libtasn1.so.6.2.0
7f8534e08000-7f8535008000 —p 00012000 08:01 796717 /usr/lib/x86_64-linux-gnu/libtasn1.so.6.2.0
7f8535008000-7f8535009000 r—p 00012000 08:01 796717 /usr/lib/x86_64-linux-gnu/libtasn1.so.6.2.0
7f8535009000-7f853500a000 rw-p 00013000 08:01 796717 /usr/lib/x86_64-linux-gnu/libtasn1.so.6.2.0
7f853500a000-7f8535044000 r-xp 00000000 08:01 796134 /usr/lib/x86_64-linux-gnu/libgssapi.so.3.0.0
7f8535044000-7f8535244000 —p 0003a000 08:01 796134 /usr/lib/x86_64-linux-gnu/libgssapi.so.3.0.0
7f8535244000-7f8535245000 r—p 0003a000 08:01 796134 /usr/lib/x86_64-linux-gnu/libgssapi.so.3.0.0
7f8535245000-7f8535247000 rw-p 0003b000 08:01 796134 /usr/lib/x86_64-linux-gnu/libgssapi.so.3.0.0
7f8535247000-7f8535248000 rw-p 00000000 00:00 0
7f8535248000-7f8535261000 r-xp 00000000 08:01 796652 /usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25
7f8535261000-7f8535461000 —p 00019000 08:01 796652 /usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25
7f8535461000-7f8535462000 r—p 00019000 08:01 796652 /usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25
7f8535462000-7f8535463000 rw-p 0001a000 08:01 796652 /usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25
7f8535463000-7f853546d000 r-xp 00000000 08:01 791353 /usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1
7f853546d000-7f853566c000 —p 0000a000 08:01 791353 /usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1
7f853566c000-7f853566d000 r—p 00009000 08:01 791353 /usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1
7f853566d000-7f853566e000 rw-p 0000a000 08:01 791353 /usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1
7f853566e000-7f8535671000 r-xp 00000000 08:01 3802282 /lib/x86_64-linux-gnu/libcom_err.so.2.1
7f8535671000-7f8535870000 —p 00003000 08:01 3802282 /lib/x86_64-linux-gnu/libcom_err.so.2.1
7f8535870000-7f8535871000 r—p 00002000 08:01 3802282 /lib/x86_64-linux-gnu/libcom_err.so.2.1
7f8535871000-7f8535872000 rw-p 00003000 08:01 3802282 /lib/x86_64-linux-gnu/libcom_err.so.2.1
7f8535872000-7f853589e000 r-xp 00000000 08:01 791349 /usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1
7f853589e000-7f8535a9d000 —p 0002c000 08:01 791349 /usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1
7f8535a9d000-7f8535a9f000 r—p 0002b000 08:01 791349 /usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1
7f8535a9f000-7f8535aa0000 rw-p 0002d000 08:01 791349 /usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1
7f8535aa0000-7f8535aa1000 rw-p 00000000 00:00 0
7f8535aa1000-7f8535b5d000 r-xp 00000000 08:01 791428 /usr/lib/x86_64-linux-gnu/libkrb5.so.3.3
7f8535b5d000-7f8535d5d000 —p 000bc000 08:01 791428 /usr/lib/x86_64-linux-gnu/libkrb5.so.3.3
7f8535d5d000-7f8535d6a000 r—p 000bc000 08:01 791428 /usr/lib/x86_64-linux-gnu/libkrb5.so.3.3
7f8535d6a000-7f8535d6c000 rw-p 000c9000 08:01 791428 /usr/lib/x86_64-linux-gnu/libkrb5.so.3.3
7f8535d6c000-7f8535de8000 r-xp 00000000 08:01 3805421 /lib/x86_64-linux-gnu/libgcrypt.so.11.8.2
7f8535de8000-7f8535fe8000 —p 0007c000 08:01 3805421 /lib/x86_64-linux-gnu/libgcrypt.so.11.8.2
7f8535fe8000-7f8535fe9000 r—p 0007c000 08:01 3805421 /lib/x86_64-linux-gnu/libgcrypt.so.11.8.2
7f8535fe9000-7f8535fec000 rw-p 0007d000 08:01 3805421 /lib/x86_64-linux-gnu/libgcrypt.so.11.8.2
7f8535fec000-7f85360a2000 r-xp 00000000 08:01 796106 /usr/lib/x86_64-linux-gnu/libgnutls.so.26.22.6
7f85360a2000-7f85362a2000 —p 000b6000 08:01 796106 /usr/lib/x86_64-linux-gnu/libgnutls.so.26.22.6
7f85362a2000-7f85362a8000 r—p 000b6000 08:01 796106 /usr/lib/x86_64-linux-gnu/libgnutls.so.26.22.6
7f85362a8000-7f85362a9000 rw-p 000bc000 08:01 796106 /usr/lib/x86_64-linux-gnu/libgnutls.so.26.22.6
7f85362a9000-7f85362aa000 rw-p 00000000 00:00 0
7f85362aa000-7f85362f7000 r-xp 00000000 08:01 791434 /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.8.3
7f85362f7000-7f85364f6000 —p 0004d000 08:01 791434 /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.8.3
7f85364f6000-7f85364f8000 r—p 0004c000 08:01 791434 /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.8.3
7f85364f8000-7f85364f9000 rw-p 0004e000 08:01 791434 /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.8.3
7f85364f9000-7f85364fb000 rw-p 00000000 00:00 0
7f85364fb000-7f8536508000 r-xp 00000000 08:01 791435 /usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.8.3
7f8536508000-7f8536708000 —p 0000d000 08:01 791435 /usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.8.3
7f8536708000-7f8536709000 r—p 0000d000 08:01 791435 /usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.8.3
7f8536709000-7f853670a000 rw-p 0000e000 08:01 791435 /usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.8.3
7f853670a000-7f853674e000 r-xp 00000000 08:01 791430 /usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2
7f853674e000-7f853694e000 —p 00044000 08:01 791430 /usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2
7f853694e000-7f853694f000 r—p 00044000 08:01 791430 /usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2
7f853694f000-7f8536951000 rw-p 00045000 08:01 791430 /usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2
7f8536951000-7f8536b03000 r-xp 00000000 08:01 3801103 /lib/x86_64-linux-gnu/libcrypto.so.1.0.0
7f8536b03000-7f8536d02000 —p 001b2000 08:01 3801103 /lib/x86_64-linux-gnu/libcrypto.so.1.0.0
7f8536d02000-7f8536d1d000 r—p 001b1000 08:01 3801103 /lib/x86_64-linux-gnu/libcrypto.so.1.0.0
7f8536d1d000-7f8536d28000 rw-p 001cc000 08:01 3801103 /lib/x86_64-linux-gnu/libcrypto.so.1.0.0
7f8536d28000-7f8536d2c000 rw-p 00000000 00:00 0
7f8536d2c000-7f8536d81000 r-xp 00000000 08:01 3801114 /lib/x86_64-linux-gnu/libssl.so.1.0.0
7f8536d81000-7f8536f81000 —p 00055000 08:01 3801114 /lib/x86_64-linux-gnu/libssl.so.1.0.0
7f8536f81000-7f8536f84000 r—p 00055000 08:01 3801114 /lib/x86_64-linux-gnu/libssl.so.1.0.0
7f8536f84000-7f8536f8b000 rw-p 00058000 08:01 3801114 /lib/x86_64-linux-gnu/libssl.so.1.0.0
7f8536f8b000-7f8536fa4000 r-xp 00000000 08:01 796635 /usr/lib/x86_64-linux-gnu/librtmp.so.0
7f8536fa4000-7f85371a3000 —p 00019000 08:01 796635 /usr/lib/x86_64-linux-gnu/librtmp.so.0
7f85371a3000-7f85371a4000 r—p 00018000 08:01 796635 /usr/lib/x86_64-linux-gnu/librtmp.so.0
7f85371a4000-7f85371a5000 rw-p 00019000 08:01 796635 /usr/lib/x86_64-linux-gnu/librtmp.so.0
7f85371a5000-7f85371d6000 r-xp 00000000 08:01 796291 /usr/lib/x86_64-linux-gnu/libidn.so.11.6.11
7f85371d6000-7f85373d6000 —p 00031000 08:01 796291 /usr/lib/x86_64-linux-gnu/libidn.so.11.6.11
7f85373d6000-7f85373d7000 r—p 00031000 08:01 796291 /usr/lib/x86_64-linux-gnu/libidn.so.11.6.11
7f85373d7000-7f85373d8000 rw-p 00032000 08:01 796291 /usr/lib/x86_64-linux-gnu/libidn.so.11.6.11
7f85373d8000-7f853743c000 r-xp 00000000 08:01 793602 /usr/lib/x86_64-linux-gnu/libcurl.so.4.3.0
7f853743c000-7f853763c000 —p 00064000 08:01 793602 /usr/lib/x86_64-linux-gnu/libcurl.so.4.3.0
7f853763c000-7f853763e000 r—p 00064000 08:01 793602 /usr/lib/x86_64-linux-gnu/libcurl.so.4.3.0
7f853763e000-7f853763f000 rw-p 00066000 08:01 793602 /usr/lib/x86_64-linux-gnu/libcurl.so.4.3.0
7f853763f000-7f8537653000 r-xp 00000000 08:01 801346 /usr/lib/php5/20131226/curl.so
7f8537653000-7f8537852000 —p 00014000 08:01 801346 /usr/lib/php5/20131226/curl.so
7f8537852000-7f8537854000 r—p 00013000 08:01 801346 /usr/lib/php5/20131226/curl.so
7f8537854000-7f8537855000 rw-p 00015000 08:01 801346 /usr/lib/php5/20131226/curl.so
7f8537855000-7f853786e000 r-xp 00000000 08:01 804047 /usr/lib/php5/20131226/pdo.so
7f853786e000-7f8537a6d000 —p 00019000 08:01 804047 /usr/lib/php5/20131226/pdo.so
7f8537a6d000-7f8537a70000 r—p 00018000 08:01 804047 /usr/lib/php5/20131226/pdo.so
7f8537a70000-7f8537a71000 rw-p 0001b000 08:01 804047 /usr/lib/php5/20131226/pdo.so
7f8537a71000-7f8537a95000 r-xp 00000000 08:01 804048 /usr/lib/php5/20131226/opcache.so
7f8537a95000-7f8537c95000 —p 00024000 08:01 804048 /usr/lib/php5/20131226/opcache.so
7f8537c95000-7f8537c96000 r—p 00024000 08:01 804048 /usr/lib/php5/20131226/opcache.so
7f8537c96000-7f8537c97000 rw-p 00025000 08:01 804048 /usr/lib/php5/20131226/opcache.so
7f8537c97000-7f8537c9f000 rw-p 00000000 00:00 0
7f8537c9f000-7f8537cd4000 r-xp 00000000 08:01 809376 /usr/lib/php5/20131226/xdebug.so
7f8537cd4000-7f8537ed4000 —p 00035000 08:01 809376 /usr/lib/php5/20131226/xdebug.so
7f8537ed4000-7f8537ed6000 r—p 00035000 08:01 809376 /usr/lib/php5/20131226/xdebug.so
7f8537ed6000-7f8537ed8000 rw-p 00037000 08:01 809376 /usr/lib/php5/20131226/xdebug.so
7f8537ed8000-7f8537fd9000 rw-p 00000000 00:00 0
7f8537fd9000-7f8537fe4000 r-xp 00000000 08:01 3805468 /lib/x86_64-linux-gnu/libnss_files-2.19.so
7f8537fe4000-7f85381e3000 —p 0000b000 08:01 3805468 /lib/x86_64-linux-gnu/libnss_files-2.19.so
7f85381e3000-7f85381e4000 r—p 0000a000 08:01 3805468 /lib/x86_64-linux-gnu/libnss_files-2.19.so
7f85381e4000-7f85381e5000 rw-p 0000b000 08:01 3805468 /lib/x86_64-linux-gnu/libnss_files-2.19.so
7f85381e5000-7f85381f0000 r-xp 00000000 08:01 3805478 /lib/x86_64-linux-gnu/libnss_nis-2.19.so
7f85381f0000-7f85383ef000 —p 0000b000 08:01 3805478 /lib/x86_64-linux-gnu/libnss_nis-2.19.so
7f85383ef000-7f85383f0000 r—p 0000a000 08:01 3805478 /lib/x86_64-linux-gnu/libnss_nis-2.19.so
7f85383f0000-7f85383f1000 rw-p 0000b000 08:01 3805478 /lib/x86_64-linux-gnu/libnss_nis-2.19.so
7f85383f1000-7f8538408000 r-xp 00000000 08:01 3805462 /lib/x86_64-linux-gnu/libnsl-2.19.so
7f8538408000-7f8538607000 —p 00017000 08:01 3805462 /lib/x86_64-linux-gnu/libnsl-2.19.so
7f8538607000-7f8538608000 r—p 00016000 08:01 3805462 /lib/x86_64-linux-gnu/libnsl-2.19.so
7f8538608000-7f8538609000 rw-p 00017000 08:01 3805462 /lib/x86_64-linux-gnu/libnsl-2.19.so
7f8538609000-7f853860b000 rw-p 00000000 00:00 0
7f853860b000-7f8538614000 r-xp 00000000 08:01 3805464 /lib/x86_64-linux-gnu/libnss_compat-2.19.so
7f8538614000-7f8538813000 —p 00009000 08:01 3805464 /lib/x86_64-linux-gnu/libnss_compat-2.19.so
7f8538813000-7f8538814000 r—p 00008000 08:01 3805464 /lib/x86_64-linux-gnu/libnss_compat-2.19.so
7f8538814000-7f8538815000 rw-p 00009000 08:01 3805464 /lib/x86_64-linux-gnu/libnss_compat-2.19.so
7f8538815000-7f853881a000 r-xp 00000000 08:01 797617 /usr/lib/apache2/modules/mod_status.so
7f853881a000-7f8538a19000 —p 00005000 08:01 797617 /usr/lib/apache2/modules/mod_status.so
7f8538a19000-7f8538a1a000 r—p 00004000 08:01 797617 /usr/lib/apache2/modules/mod_status.so
7f8538a1a000-7f8538a1b000 rw-p 00005000 08:01 797617 /usr/lib/apache2/modules/mod_status.so
7f8538a1b000-7f8538a1e000 r-xp 00000000 08:01 797689 /usr/lib/apache2/modules/mod_setenvif.so
7f8538a1e000-7f8538c1d000 —p 00003000 08:01 797689 /usr/lib/apache2/modules/mod_setenvif.so
7f8538c1d000-7f8538c1e000 r—p 00002000 08:01 797689 /usr/lib/apache2/modules/mod_setenvif.so
7f8538c1e000-7f8538c1f000 rw-p 00003000 08:01 797689 /usr/lib/apache2/modules/mod_setenvif.so
7f8538c1f000-7f8538c2e000 r-xp 00000000 08:01 797616 /usr/lib/apache2/modules/mod_rewrite.so
7f8538c2e000-7f8538e2e000 —p 0000f000 08:01 797616 /usr/lib/apache2/modules/mod_rewrite.so
7f8538e2e000-7f8538e2f000 r—p 0000f000 08:01 797616 /usr/lib/apache2/modules/mod_rewrite.so
7f8538e2f000-7f8538e30000 rw-p 00010000 08:01 797616 /usr/lib/apache2/modules/mod_rewrite.so
7f8538e30000-7f8538e51000 r-xp 00000000 08:01 3805440 /lib/x86_64-linux-gnu/liblzma.so.5.0.0
7f8538e51000-7f8539050000 —p 00021000 08:01 3805440 /lib/x86_64-linux-gnu/liblzma.so.5.0.0
7f8539050000-7f8539051000 r—p 00020000 08:01 3805440 /lib/x86_64-linux-gnu/liblzma.so.5.0.0
7f8539051000-7f8539052000 rw-p 00021000 08:01 3805440 /lib/x86_64-linux-gnu/liblzma.so.5.0.0
7f8539052000-7f85391ae000 r-xp 00000000 08:01 791442 /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.1
7f85391ae000-7f85393ad000 —p 0015c000 08:01 791442 /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.1
7f85393ad000-7f85393b5000 r—p 0015b000 08:01 791442 /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.1
7f85393b5000-7f85393b7000 rw-p 00163000 08:01 791442 /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.1
7f85393b7000-7f85393b8000 rw-p 00000000 00:00 0
7f85393b8000-7f85394bd000 r-xp 00000000 08:01 3805443 /lib/x86_64-linux-gnu/libm-2.19.so
7f85394bd000-7f85396bc000 —p 00105000 08:01 3805443 /lib/x86_64-linux-gnu/libm-2.19.so
7f85396bc000-7f85396bd000 r—p 00104000 08:01 3805443 /lib/x86_64-linux-gnu/libm-2.19.so
7f85396bd000-7f85396be000 rw-p 00105000 08:01 3805443 /lib/x86_64-linux-gnu/libm-2.19.so
7f85396be000-7f85396cd000 r-xp 00000000 08:01 3805391 /lib/x86_64-linux-gnu/libbz2.so.1.0.4
7f85396cd000-7f85398cc000 —p 0000f000 08:01 3805391 /lib/x86_64-linux-gnu/libbz2.so.1.0.4
7f85398cc000-7f85398cd000 r—p 0000e000 08:01 3805391 /lib/x86_64-linux-gnu/libbz2.so.1.0.4
7f85398cd000-7f85398ce000 rw-p 0000f000 08:01 3805391 /lib/x86_64-linux-gnu/libbz2.so.1.0.4
7f85398ce000-7f853991c000 r-xp 00000000 08:01 808409 /usr/lib/libqdbm.so.14.14.0
7f853991c000-7f8539b1b000 —p 0004e000 08:01 808409 /usr/lib/libqdbm.so.14.14.0
7f8539b1b000-7f8539b1c000 r—p 0004d000 08:01 808409 /usr/lib/libqdbm.so.14.14.0
7f8539b1c000-7f8539b1d000 rw-p 0004e000 08:01 808409 /usr/lib/libqdbm.so.14.14.0
7f8539b1d000-7f8539cb8000 r-xp 00000000 08:01 795856 /usr/lib/x86_64-linux-gnu/libdb-5.3.so
7f8539cb8000-7f8539eb7000 —p 0019b000 08:01 795856 /usr/lib/x86_64-linux-gnu/libdb-5.3.so
7f8539eb7000-7f8539ebe000 r—p 0019a000 08:01 795856 /usr/lib/x86_64-linux-gnu/libdb-5.3.so
7f8539ebe000-7f8539ebf000 rw-p 001a1000 08:01 795856 /usr/lib/x86_64-linux-gnu/libdb-5.3.so
7f8539ebf000-7f8539f1b000 r-xp 00000000 08:01 808389 /usr/lib/x86_64-linux-gnu/libssl.so.1.0.2
7f8539f1b000-7f853a11b000 —p 0005c000 08:01 808389 /usr/lib/x86_64-linux-gnu/libssl.so.1.0.2
7f853a11b000-7f853a11f000 r—p 0005c000 08:01 808389 /usr/lib/x86_64-linux-gnu/libssl.so.1.0.2
7f853a11f000-7f853a126000 rw-p 00060000 08:01 808389 /usr/lib/x86_64-linux-gnu/libssl.so.1.0.2
7f853a126000-7f853a342000 r-xp 00000000 08:01 808404 /usr/lib/x86_64-linux-gnu/libcrypto.so.1.0.2
7f853a342000-7f853a542000 —p 0021c000 08:01 808404 /usr/lib/x86_64-linux-gnu/libcrypto.so.1.0.2
7f853a542000-7f853a55e000 r—p 0021c000 08:01 808404 /usr/lib/x86_64-linux-gnu/libcrypto.so.1.0.2
7f853a55e000-7f853a56a000 rw-p 00238000 08:01 808404 /usr/lib/x86_64-linux-gnu/libcrypto.so.1.0.2
7f853a56a000-7f853a56d000 rw-p 00000000 00:00 0
7f853a56d000-7f853a5d2000 r-xp 00000000 08:01 808407 /usr/lib/libonig.so.2.0.0
7f853a5d2000-7f853a7d1000 —p 00065000 08:01 808407 /usr/lib/libonig.so.2.0.0
7f853a7d1000-7f853a7d4000 rw-p 00064000 08:01 808407 /usr/lib/libonig.so.2.0.0
7f853a7d4000-7f853a7eb000 r-xp 00000000 08:01 3805519 /lib/x86_64-linux-gnu/libresolv-2.19.so
7f853a7eb000-7f853a9eb000 —p 00017000 08:01 3805519 /lib/x86_64-linux-gnu/libresolv-2.19.so
7f853a9eb000-7f853a9ec000 r—p 00017000 08:01 3805519 /lib/x86_64-linux-gnu/libresolv-2.19.so
7f853a9ec000-7f853a9ed000 rw-p 00018000 08:01 3805519 /lib/x86_64-linux-gnu/libresolv-2.19.so
7f853a9ed000-7f853a9ef000 rw-p 00000000 00:00 0
7f853a9ef000-7f853b26f000 r-xp 00000000 08:01 801416 /usr/lib/apache2/modules/libphp5.so
7f853b26f000-7f853b46f000 —p 00880000 08:01 801416 /usr/lib/apache2/modules/libphp5.so
7f853b46f000-7f853b510000 r—p 00880000 08:01 801416 /usr/lib/apache2/modules/libphp5.so
7f853b510000-7f853b51b000 rw-p 00921000 08:01 801416 /usr/lib/apache2/modules/libphp5.so
7f853b51b000-7f853b538000 rw-p 00000000 00:00 0
7f853b538000-7f853b540000 r-xp 00000000 08:01 797686 /usr/lib/apache2/modules/mod_negotiation.so
7f853b540000-7f853b73f000 —p 00008000 08:01 797686 /usr/lib/apache2/modules/mod_negotiation.so
7f853b73f000-7f853b740000 r—p 00007000 08:01 797686 /usr/lib/apache2/modules/mod_negotiation.so
7f853b740000-7f853b741000 rw-p 00008000 08:01 797686 /usr/lib/apache2/modules/mod_negotiation.so
7f853b741000-7f853b748000 r-xp 00000000 08:01 797676 /usr/lib/apache2/modules/mod_mpm_prefork.so
7f853b748000-7f853b947000 —p 00007000 08:01 797676 /usr/lib/apache2/modules/mod_mpm_prefork.so
7f853b947000-7f853b948000 r—p 00006000 08:01 797676 /usr/lib/apache2/modules/mod_mpm_prefork.so
7f853b948000-7f853b949000 rw-p 00007000 08:01 797676 /usr/lib/apache2/modules/mod_mpm_prefork.so
7f853b949000-7f853b94d000 r-xp 00000000 08:01 797646 /usr/lib/apache2/modules/mod_mime.so
7f853b94d000-7f853bb4c000 —p 00004000 08:01 797646 /usr/lib/apache2/modules/mod_mime.so
7f853bb4c000-7f853bb4d000 r—p 00003000 08:01 797646 /usr/lib/apache2/modules/mod_mime.so
7f853bb4d000-7f853bb4e000 rw-p 00004000 08:01 797646 /usr/lib/apache2/modules/mod_mime.so
7f853bb4e000-7f853bb52000 r-xp 00000000 08:01 797713 /usr/lib/apache2/modules/mod_headers.so
7f853bb52000-7f853bd52000 —p 00004000 08:01 797713 /usr/lib/apache2/modules/mod_headers.so
7f853bd52000-7f853bd53000 r—p 00004000 08:01 797713 /usr/lib/apache2/modules/mod_headers.so
7f853bd53000-7f853bd54000 rw-p 00005000 08:01 797713 /usr/lib/apache2/modules/mod_headers.so
7f853bd54000-7f853bd58000 r-xp 00000000 08:01 797662 /usr/lib/apache2/modules/mod_filter.so
7f853bd58000-7f853bf57000 —p 00004000 08:01 797662 /usr/lib/apache2/modules/mod_filter.so
7f853bf57000-7f853bf58000 r—p 00003000 08:01 797662 /usr/lib/apache2/modules/mod_filter.so
7f853bf58000-7f853bf59000 rw-p 00004000 08:01 797662 /usr/lib/apache2/modules/mod_filter.so
7f853bf59000-7f853bf5b000 r-xp 00000000 08:01 797710 /usr/lib/apache2/modules/mod_env.so
7f853bf5b000-7f853c15a000 —p 00002000 08:01 797710 /usr/lib/apache2/modules/mod_env.so
7f853c15a000-7f853c15b000 r—p 00001000 08:01 797710 /usr/lib/apache2/modules/mod_env.so
7f853c15b000-7f853c15c000 rw-p 00002000 08:01 797710 /usr/lib/apache2/modules/mod_env.so
7f853c15c000-7f853c15e000 r-xp 00000000 08:01 797678 /usr/lib/apache2/modules/mod_dir.so
7f853c15e000-7f853c35e000 —p 00002000 08:01 797678 /usr/lib/apache2/modules/mod_dir.so
7f853c35e000-7f853c35f000 r—p 00002000 08:01 797678 /usr/lib/apache2/modules/mod_dir.so
7f853c35f000-7f853c360000 rw-p 00003000 08:01 797678 /usr/lib/apache2/modules/mod_dir.so
7f853c360000-7f853c378000 r-xp 00000000 08:01 3805554 /lib/x86_64-linux-gnu/libz.so.1.2.8
7f853c378000-7f853c577000 —p 00018000 08:01 3805554 /lib/x86_64-linux-gnu/libz.so.1.2.8
7f853c577000-7f853c578000 r—p 00017000 08:01 3805554 /lib/x86_64-linux-gnu/libz.so.1.2.8
7f853c578000-7f853c579000 rw-p 00018000 08:01 3805554 /lib/x86_64-linux-gnu/libz.so.1.2.8
7f853c579000-7f853c580000 r-xp 00000000 08:01 797667 /usr/lib/apache2/modules/mod_deflate.so
7f853c580000-7f853c780000 —p 00007000 08:01 797667 /usr/lib/apache2/modules/mod_deflate.so
7f853c780000-7f853c781000 r—p 00007000 08:01 797667 /usr/lib/apache2/modules/mod_deflate.so
7f853c781000-7f853c782000 rw-p 00008000 08:01 797667 /usr/lib/apache2/modules/mod_deflate.so
7f853c782000-7f853c78a000 r-xp 00000000 08:01 797655 /usr/lib/apache2/modules/mod_autoindex.so
7f853c78a000-7f853c98a000 —p 00008000 08:01 797655 /usr/lib/apache2/modules/mod_autoindex.so
7f853c98a000-7f853c98b000 r—p 00008000 08:01 797655 /usr/lib/apache2/modules/mod_autoindex.so
7f853c98b000-7f853c98c000 rw-p 00009000 08:01 797655 /usr/lib/apache2/modules/mod_autoindex.so
7f853c98c000-7f853c98d000 r-xp 00000000 08:01 797709 /usr/lib/apache2/modules/mod_authz_user.so
7f853c98d000-7f853cb8c000 —p 00001000 08:01 797709 /usr/lib/apache2/modules/mod_authz_user.so
7f853cb8c000-7f853cb8d000 r—p 00000000 08:01 797709 /usr/lib/apache2/modules/mod_authz_user.so
7f853cb8d000-7f853cb8e000 rw-p 00001000 08:01 797709 /usr/lib/apache2/modules/mod_authz_user.so
7f853cb8e000-7f853cb90000 r-xp 00000000 08:01 797636 /usr/lib/apache2/modules/mod_authz_host.so
7f853cb90000-7f853cd8f000 —p 00002000 08:01 797636 /usr/lib/apache2/modules/mod_authz_host.so
7f853cd8f000-7f853cd90000 r—p 00001000 08:01 797636 /usr/lib/apache2/modules/mod_authz_host.so
7f853cd90000-7f853cd91000 rw-p 00002000 08:01 797636 /usr/lib/apache2/modules/mod_authz_host.so
7f853cd91000-7f853cd96000 r-xp 00000000 08:01 797681 /usr/lib/apache2/modules/mod_authz_core.so
7f853cd96000-7f853cf95000 —p 00005000 08:01 797681 /usr/lib/apache2/modules/mod_authz_core.so
7f853cf95000-7f853cf96000 r—p 00004000 08:01 797681 /usr/lib/apache2/modules/mod_authz_core.so
7f853cf96000-7f853cf97000 rw-p 00005000 08:01 797681 /usr/lib/apache2/modules/mod_authz_core.so
7f853cf97000-7f853cf99000 r-xp 00000000 08:01 797634 /usr/lib/apache2/modules/mod_authn_file.so
7f853cf99000-7f853d198000 —p 00002000 08:01 797634 /usr/lib/apache2/modules/mod_authn_file.so
7f853d198000-7f853d199000 r—p 00001000 08:01 797634 /usr/lib/apache2/modules/mod_authn_file.so
7f853d199000-7f853d19a000 rw-p 00002000 08:01 797634 /usr/lib/apache2/modules/mod_authn_file.so
7f853d19a000-7f853d19c000 r-xp 00000000 08:01 797620 /usr/lib/apache2/modules/mod_authn_core.so
7f853d19c000-7f853d39c000 —p 00002000 08:01 797620 /usr/lib/apache2/modules/mod_authn_core.so
7f853d39c000-7f853d39d000 r—p 00002000 08:01 797620 /usr/lib/apache2/modules/mod_authn_core.so
7f853d39d000-7f853d39e000 rw-p 00003000 08:01 797620 /usr/lib/apache2/modules/mod_authn_core.so
7f853d39e000-7f853d3a1000 r-xp 00000000 08:01 797694 /usr/lib/apache2/modules/mod_auth_basic.so
7f853d3a1000-7f853d5a0000 —p 00003000 08:01 797694 /usr/lib/apache2/modules/mod_auth_basic.so
7f853d5a0000-7f853d5a1000 r—p 00002000 08:01 797694 /usr/lib/apache2/modules/mod_auth_basic.so
7f853d5a1000-7f853d5a2000 rw-p 00003000 08:01 797694 /usr/lib/apache2/modules/mod_auth_basic.so
7f853d5a2000-7f853d5a5000 r-xp 00000000 08:01 797608 /usr/lib/apache2/modules/mod_alias.so
7f853d5a5000-7f853d7a4000 —p 00003000 08:01 797608 /usr/lib/apache2/modules/mod_alias.so
7f853d7a4000-7f853d7a5000 r—p 00002000 08:01 797608 /usr/lib/apache2/modules/mod_alias.so
7f853d7a5000-7f853d7a6000 rw-p 00003000 08:01 797608 /usr/lib/apache2/modules/mod_alias.so
7f853d7a6000-7f853d7a8000 r-xp 00000000 08:01 797695 /usr/lib/apache2/modules/mod_access_compat.so
7f853d7a8000-7f853d9a7000 —p 00002000 08:01 797695 /usr/lib/apache2/modules/mod_access_compat.so
7f853d9a7000-7f853d9a8000 r—p 00001000 08:01 797695 /usr/lib/apache2/modules/mod_access_compat.so
7f853d9a8000-7f853d9a9000 rw-p 00002000 08:01 797695 /usr/lib/apache2/modules/mod_access_compat.so
7f853d9a9000-7f853d9ac000 r-xp 00000000 08:01 3805409 /lib/x86_64-linux-gnu/libdl-2.19.so
7f853d9ac000-7f853dbab000 —p 00003000 08:01 3805409 /lib/x86_64-linux-gnu/libdl-2.19.so
7f853dbab000-7f853dbac000 r—p 00002000 08:01 3805409 /lib/x86_64-linux-gnu/libdl-2.19.so
7f853dbac000-7f853dbad000 rw-p 00003000 08:01 3805409 /lib/x86_64-linux-gnu/libdl-2.19.so
7f853dbad000-7f853dbb1000 r-xp 00000000 08:01 3805411 /lib/x86_64-linux-gnu/libuuid.so.1.3.0
7f853dbb1000-7f853ddb0000 —p 00004000 08:01 3805411 /lib/x86_64-linux-gnu/libuuid.so.1.3.0
7f853ddb0000-7f853ddb1000 r—p 00003000 08:01 3805411 /lib/x86_64-linux-gnu/libuuid.so.1.3.0
7f853ddb1000-7f853ddb2000 rw-p 00004000 08:01 3805411 /lib/x86_64-linux-gnu/libuuid.so.1.3.0
7f853ddb2000-7f853ddd9000 r-xp 00000000 08:01 3801258 /lib/x86_64-linux-gnu/libexpat.so.1.6.0
7f853ddd9000-7f853dfd9000 —p 00027000 08:01 3801258 /lib/x86_64-linux-gnu/libexpat.so.1.6.0
7f853dfd9000-7f853dfdb000 r—p 00027000 08:01 3801258 /lib/x86_64-linux-gnu/libexpat.so.1.6.0
7f853dfdb000-7f853dfdc000 rw-p 00029000 08:01 3801258 /lib/x86_64-linux-gnu/libexpat.so.1.6.0
7f853dfdc000-7f853dfe5000 r-xp 00000000 08:01 3805402 /lib/x86_64-linux-gnu/libcrypt-2.19.so
7f853dfe5000-7f853e1e5000 —p 00009000 08:01 3805402 /lib/x86_64-linux-gnu/libcrypt-2.19.so
7f853e1e5000-7f853e1e6000 r—p 00009000 08:01 3805402 /lib/x86_64-linux-gnu/libcrypt-2.19.so
7f853e1e6000-7f853e1e7000 rw-p 0000a000 08:01 3805402 /lib/x86_64-linux-gnu/libcrypt-2.19.so
7f853e1e7000-7f853e215000 rw-p 00000000 00:00 0
7f853e215000-7f853e3d0000 r-xp 00000000 08:01 3805392 /lib/x86_64-linux-gnu/libc-2.19.so
7f853e3d0000-7f853e5cf000 —p 001bb000 08:01 3805392 /lib/x86_64-linux-gnu/libc-2.19.so
7f853e5cf000-7f853e5d3000 r—p 001ba000 08:01 3805392 /lib/x86_64-linux-gnu/libc-2.19.so
7f853e5d3000-7f853e5d5000 rw-p 001be000 08:01 3805392 /lib/x86_64-linux-gnu/libc-2.19.so
7f853e5d5000-7f853e5da000 rw-p 00000000 00:00 0
7f853e5da000-7f853e5f3000 r-xp 00000000 08:01 3805513 /lib/x86_64-linux-gnu/libpthread-2.19.so
7f853e5f3000-7f853e7f2000 —p 00019000 08:01 3805513 /lib/x86_64-linux-gnu/libpthread-2.19.so
7f853e7f2000-7f853e7f3000 r—p 00018000 08:01 3805513 /lib/x86_64-linux-gnu/libpthread-2.19.so
7f853e7f3000-7f853e7f4000 rw-p 00019000 08:01 3805513 /lib/x86_64-linux-gnu/libpthread-2.19.so
7f853e7f4000-7f853e7f8000 rw-p 00000000 00:00 0
7f853e7f8000-7f853e828000 r-xp 00000000 08:01 797483 /usr/lib/x86_64-linux-gnu/libapr-1.so.0.5.1
7f853e828000-7f853ea27000 —p 00030000 08:01 797483 /usr/lib/x86_64-linux-gnu/libapr-1.so.0.5.1
7f853ea27000-7f853ea28000 r—p 0002f000 08:01 797483 /usr/lib/x86_64-linux-gnu/libapr-1.so.0.5.1
7f853ea28000-7f853ea29000 rw-p 00030000 08:01 797483 /usr/lib/x86_64-linux-gnu/libapr-1.so.0.5.1
7f853ea29000-7f853ea4f000 r-xp 00000000 08:01 797488 /usr/lib/x86_64-linux-gnu/libaprutil-1.so.0.5.3
7f853ea4f000-7f853ec4e000 —p 00026000 08:01 797488 /usr/lib/x86_64-linux-gnu/libaprutil-1.so.0.5.3
7f853ec4e000-7f853ec4f000 r—p 00025000 08:01 797488 /usr/lib/x86_64-linux-gnu/libaprutil-1.so.0.5.3
7f853ec4f000-7f853ec50000 rw-p 00026000 08:01 797488 /usr/lib/x86_64-linux-gnu/libaprutil-1.so.0.5.3
7f853ec50000-7f853ec8d000 r-xp 00000000 08:01 3805446 /lib/x86_64-linux-gnu/libpcre.so.3.13.1
7f853ec8d000-7f853ee8c000 —p 0003d000 08:01 3805446 /lib/x86_64-linux-gnu/libpcre.so.3.13.1
7f853ee8c000-7f853ee8d000 r—p 0003c000 08:01 3805446 /lib/x86_64-linux-gnu/libpcre.so.3.13.1
7f853ee8d000-7f853ee8e000 rw-p 0003d000 08:01 3805446 /lib/x86_64-linux-gnu/libpcre.so.3.13.1
7f853ee8e000-7f853eeb1000 r-xp 00000000 08:01 3805366 /lib/x86_64-linux-gnu/ld-2.19.so
7f853eeb3000-7f853eeba000 r—s 00000000 08:01 1184571 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache
7f853eeba000-7f853eefb000 rw-p 00000000 00:00 0
7f853eefb000-7f853eefc000 —p 00000000 00:00 0
7f853eefc000-7f853eefe000 rwxp 00000000 00:00 0
7f853eefe000-7f853eeff000 —p 00000000 00:00 0
7f853eeff000-7f853ef17000 rwxp 00000000 00:00 0 [stack:4898]
7f853ef17000-7f853ef18000 r—p 00000000 00:00 0
7f853ef18000-7f853ef3d000 rw-p 00000000 00:00 0
7f853ef3d000-7f853ef4f000 rw-s 00000000 00:04 19668 /dev/zero (deleted)
7f853ef4f000-7f853efe3000 rw-p 00000000 00:00 0
7f853efe3000-7f853f08e000 rw-p 00000000 00:00 0
7f853f08e000-7f853f0b0000 rw-p 00000000 00:00 0
7f853f0b0000-7f853f0b1000 r—p 00022000 08:01 3805366 /lib/x86_64-linux-gnu/ld-2.19.so
7f853f0b1000-7f853f0b2000 rw-p 00023000 08:01 3805366 /lib/x86_64-linux-gnu/ld-2.19.so
7f853f0b2000-7f853f0b3000 rw-p 00000000 00:00 0
7f853f0b3000-7f853f148000 r-xp 00000000 08:01 797715 /usr/sbin/apache2
7f853f347000-7f853f34b000 r—p 00094000 08:01 797715 /usr/sbin/apache2
7f853f34b000-7f853f34f000 rw-p 00098000 08:01 797715 /usr/sbin/apache2
7f853f34f000-7f853f352000 rw-p 00000000 00:00 0
7f85407cb000-7f85407ec000 rw-p 00000000 00:00 0 [heap]
7f85407ec000-7f8540bc9000 rw-p 000000

Problems and their solutions

CSPlayer tool bar doesn’t open

Possible solutions:

  • Launch the player app as Administrator.

  • Check launch arguments, if they are used.

  • Delete cache in the folder %userprofile%AppDataLocalCityScreenCSPlayer and launch the player again.

CSPlayer tool bar opens and after some time closes, the cityscreen-player window doesn’t open

Possible solutions:

  • Check the compatibility of the cityscreen-player bit-version and Windows bit-version, if the versions are not compatible – download compatible player versions.

  • Reinstall the player, make sure that the offered K-Lite Codec Pack and the C++ library are installed.

  • Manually launch cityscreen-player.exe (it’s in the /lib/player folder of the installed CSPlayer). If the player opens when you launch it manually, ask our support team.

CSPlayer tool bar opens, but an error pops up when the cityscreen-player attempts to open

Possible solutions:

  • Update video card drivers.

When the player attempts to open, an error jet runtime has detected unrecoverable error pops up

Possible solutions:

  • Close the window and relaunch the player.

The player opens, but the screen is black / videos don’t play

Possible solutions:

  • Check whether this screen has media plan: generate a Cyclogram for this screen, and if it’s empty, then this screen has no media plan. Generate a media plan for this screen.

  • Check whether the codecs are installed.

When you enter the PIN to connect the player, an error Authorization error pops up

Possible solutions:

  • Generate new PIN and enter the generated PIN into the CSPlayer.

  • Make sure you select the correct Region when you connect the player (China for China, Global for other locations).

When you enter the PIN, an error Your player version is ... . Supported version is ... . Ask administrator for help pops up

Possible solutions:

  • Ask our support team.

If nothing helps, ask our support team.

Hello everyone,

I will report that because I have tried x86 and x64 with Excelsior Jet 15
And It said after «Test run» — If I have checked lwjgl 3.1 with Excelsior Jet 15 than it stopped because it looks

[LWJGL] Failed to retrieve the JVMTI interface pointer.
JET RUNTIME HAS DETECTED UNRECOVERABLE ERROR: system exception at 0x00007ffdde143bb9
Please, contact Excelsior Support at <java@excelsior-usa.com>.
Crash dump will be written to "C:UsersSSBDocumentsMyDevJavaTestWithATSWINGSwtDemojet_dump_12180.dmp"
Extra information about error is saved in the "jet_err_12180.txt" file.

Cause it is NullException error when you made jar unpack any dlls / so / dylib
Please go back old structure of lwjgl 2.9.3

Workaround with old lwjgl = works fine.
I have tested lwjgl 2.9.3 and swt into Excelsior Jet = Working 100 %

It is truth bundled executable of Excelsior Jet

But why does it not work with lwjgl 3.1.6/3.1.7? Please fix it!

And check community of Excelsior Jet 15 I have written there.

Thanks!


Logged


Excelsior JET does not support JVMTI. LWJGL requires JVMTI for the OpenGL and OpenGL ES bindings only, it is used to avoid a thread-local lookup per function call.

This issue is not acceptable, I’ll post again when I figure out a solution.


Logged


Oh?

How do we protect own game? — who want sell or share nice lwjgl games on Steam, Origin or other Game-Managers and hackers are happy to decompile java classes and they are spying to own game. If game has connection with store like coins, cashes or assets for game like FarmVile or  Samuari Siege etc..

Please respect to us! We love protector Excelsior Jet 15.x because hackers can’t decompile it.

Please give chance with lwjgl 3.x!


Logged


I have a feeling you misunderstood my answer. This is a critical issue for LWJGL and I’ll try to resolve it as soon as possible. LWJGL must support Excelsior Jet and other AOT compilers.


Logged



Logged


Excelsior JET won’t add it because «its implementation would enable a wide variety of introspection techniques for the compiled applications, which is highly undesirable».

The problem is that the GL/GLES bindings depend on an optional JVM feature to work. There has to be a fallback implementation when it’s not available.


Logged


Hey sourceskyboxer,

Could you please try LWJGL 3.1.7 snapshot build 7? The dependency to JVMTI has been eliminated.


Logged


I just tried with the Gears demo and an evaluation copy of Excelsior JET 15, the executable worked perfectly. Please confirm when you have time.


Logged


I just tried with the Gears demo and an evaluation copy of Excelsior JET 15, the executable worked perfectly. Please confirm when you have time.

I am sorry for long time. I am busy from my work. I need eadn money.  I am sorry i will check lwjgl and Excelsior jet. Thanks


Logged


Wow it works now! Thank you for resolving it! I am sorry for longer busy. Thanks, Magicians!


Logged


Понравилась статья? Поделить с друзьями:
  • Jet error 514
  • Jest expect error
  • Jenkins ldap error code 49
  • Joomla 500 internal server error
  • Jenkins git failed to connect to repository error performing command