From Dell.Green at ideaworks.co.uk Sat Jun 1 19:28:03 2019 From: Dell.Green at ideaworks.co.uk (Dell Green) Date: Sat, 1 Jun 2019 19:28:03 +0000 Subject: Can Javafx cursor be disabled? In-Reply-To: References: Message-ID: Thanks for that, good to know. I should of mentioned that we are not using X, but using framebuffer instead Message: 2 Date: Fri, 31 May 2019 14:45:11 +0000 From: Thiago Milczarek Sayao To: "openjfx-dev at openjdk.java.net" Subject: RE: Can Javafx cursor be disabled? Message-ID: Content-Type: text/plain; charset="us-ascii" If you are using X.org, the cursor is controlled by X, so I would look for a X configuration to disable cursor. https://unix.stackexchange.com/questions/346903/can-i-remove-the-mouse-pointer-entirely-from-x ________________________________ De: openjfx-dev em nome de Dell Green Enviado: sexta-feira, 31 de maio de 2019 11:29 Para: openjfx-dev at openjdk.java.net Assunto: Can Javafx cursor be disabled? We have a touch/rotary device that doesn't use any mouse/cursor input. Is there a way to tell javafx to not initialize a cursor (MX6Cursor.java in my case) on startup as we are seeing /dev/fb1 being unblanked and a grey cursor artifact drawn onto the /dev/fb1, before any user specific javafx code is created. I have looked through the source code and there doesn't seem to be a configurable property to control this. I can remove /dev/fb1 and javafx prints an error/stack-trace but appears to work as normal, however I'm not sure what ongoing impact this has on javafx. any thoughts? End of openjfx-dev Digest, Vol 91, Issue 1 ****************************************** From thiago.sayao at clamed.com.br Sat Jun 1 22:18:22 2019 From: thiago.sayao at clamed.com.br (Thiago Milczarek Sayao) Date: Sat, 1 Jun 2019 22:18:22 +0000 Subject: Can Javafx cursor be disabled? In-Reply-To: References: , Message-ID: I don't think javafx supports framebuffer. It might be working on gtk2, but will not work on gtk3 since the framebuffer backend was removed from gdk. So I suggest you move to X11. ________________________________ De: openjfx-dev em nome de Dell Green Enviado: s?bado, 1 de junho de 2019 16:28 Para: openjfx-dev at openjdk.java.net Assunto: RE: Can Javafx cursor be disabled? Thanks for that, good to know. I should of mentioned that we are not using X, but using framebuffer instead Message: 2 Date: Fri, 31 May 2019 14:45:11 +0000 From: Thiago Milczarek Sayao To: "openjfx-dev at openjdk.java.net" Subject: RE: Can Javafx cursor be disabled? Message-ID: Content-Type: text/plain; charset="us-ascii" If you are using X.org, the cursor is controlled by X, so I would look for a X configuration to disable cursor. https://unix.stackexchange.com/questions/346903/can-i-remove-the-mouse-pointer-entirely-from-x ________________________________ De: openjfx-dev em nome de Dell Green Enviado: sexta-feira, 31 de maio de 2019 11:29 Para: openjfx-dev at openjdk.java.net Assunto: Can Javafx cursor be disabled? We have a touch/rotary device that doesn't use any mouse/cursor input. Is there a way to tell javafx to not initialize a cursor (MX6Cursor.java in my case) on startup as we are seeing /dev/fb1 being unblanked and a grey cursor artifact drawn onto the /dev/fb1, before any user specific javafx code is created. I have looked through the source code and there doesn't seem to be a configurable property to control this. I can remove /dev/fb1 and javafx prints an error/stack-trace but appears to work as normal, however I'm not sure what ongoing impact this has on javafx. any thoughts? End of openjfx-dev Digest, Vol 91, Issue 1 ****************************************** From thiago.sayao at clamed.com.br Sat Jun 1 22:23:41 2019 From: thiago.sayao at clamed.com.br (Thiago Milczarek Sayao) Date: Sat, 1 Jun 2019 22:23:41 +0000 Subject: Can Javafx cursor be disabled? In-Reply-To: References: , , Message-ID: Just realized you might be using Monocle. So it might be handling the cursor. Don't know how to hide it.. ________________________________ De: openjfx-dev em nome de Thiago Milczarek Sayao Enviado: s?bado, 1 de junho de 2019 19:18 Para: openjfx-dev at openjdk.java.net Assunto: RE: Can Javafx cursor be disabled? I don't think javafx supports framebuffer. It might be working on gtk2, but will not work on gtk3 since the framebuffer backend was removed from gdk. So I suggest you move to X11. ________________________________ De: openjfx-dev em nome de Dell Green Enviado: s?bado, 1 de junho de 2019 16:28 Para: openjfx-dev at openjdk.java.net Assunto: RE: Can Javafx cursor be disabled? Thanks for that, good to know. I should of mentioned that we are not using X, but using framebuffer instead Message: 2 Date: Fri, 31 May 2019 14:45:11 +0000 From: Thiago Milczarek Sayao To: "openjfx-dev at openjdk.java.net" Subject: RE: Can Javafx cursor be disabled? Message-ID: Content-Type: text/plain; charset="us-ascii" If you are using X.org, the cursor is controlled by X, so I would look for a X configuration to disable cursor. https://unix.stackexchange.com/questions/346903/can-i-remove-the-mouse-pointer-entirely-from-x ________________________________ De: openjfx-dev em nome de Dell Green Enviado: sexta-feira, 31 de maio de 2019 11:29 Para: openjfx-dev at openjdk.java.net Assunto: Can Javafx cursor be disabled? We have a touch/rotary device that doesn't use any mouse/cursor input. Is there a way to tell javafx to not initialize a cursor (MX6Cursor.java in my case) on startup as we are seeing /dev/fb1 being unblanked and a grey cursor artifact drawn onto the /dev/fb1, before any user specific javafx code is created. I have looked through the source code and there doesn't seem to be a configurable property to control this. I can remove /dev/fb1 and javafx prints an error/stack-trace but appears to work as normal, however I'm not sure what ongoing impact this has on javafx. any thoughts? End of openjfx-dev Digest, Vol 91, Issue 1 ****************************************** From Dell.Green at ideaworks.co.uk Sun Jun 2 19:16:54 2019 From: Dell.Green at ideaworks.co.uk (Dell Green) Date: Sun, 2 Jun 2019 19:16:54 +0000 Subject: Can Javafx cursor be disabled? References: Message-ID: Hi, thanks for. Yes we are currently running without X and using Monocle. Maybe I'll put up a feature request as with embedded devices often the cursor is not a relevant modality. > > ------------------------------ > > Message: 3 > Date: Sat, 1 Jun 2019 22:23:41 +0000 > From: Thiago Milczarek Sayao > To: "openjfx-dev at openjdk.java.net" > Subject: RE: Can Javafx cursor be disabled? > Message-ID: > > > Content-Type: text/plain; charset="iso-8859-1" > > Just realized you might be using Monocle. > > So it might be handling the cursor. Don't know how to hide it.. > ________________________________ > De: openjfx-dev em nome de Thiago Milczarek Sayao > Enviado: s?bado, 1 de junho de 2019 19:18 > Para: openjfx-dev at openjdk.java.net > Assunto: RE: Can Javafx cursor be disabled? > > I don't think javafx supports framebuffer. > > It might be working on gtk2, but will not work on gtk3 since the framebuffer backend was removed from gdk. > > So I suggest you move to X11. > ________________________________ > De: openjfx-dev em nome de Dell Green > Enviado: s?bado, 1 de junho de 2019 16:28 > Para: openjfx-dev at openjdk.java.net > Assunto: RE: Can Javafx cursor be disabled? > > Thanks for that, good to know. I should of mentioned that we are not using X, but using framebuffer instead > > Message: 2 > Date: Fri, 31 May 2019 14:45:11 +0000 > From: Thiago Milczarek Sayao > To: "openjfx-dev at openjdk.java.net" > Subject: RE: Can Javafx cursor be disabled? > Message-ID: > > > Content-Type: text/plain; charset="us-ascii" > > If you are using X.org, the cursor is controlled by X, so I would look for a X configuration to disable cursor. > > https://unix.stackexchange.com/questions/346903/can-i-remove-the-mouse-pointer-entirely-from-x > > ________________________________ > De: openjfx-dev em nome de Dell Green > Enviado: sexta-feira, 31 de maio de 2019 11:29 > Para: openjfx-dev at openjdk.java.net > Assunto: Can Javafx cursor be disabled? > > We have a touch/rotary device that doesn't use any mouse/cursor input. > > Is there a way to tell javafx to not initialize a cursor (MX6Cursor.java in my case) on startup as we are seeing /dev/fb1 being unblanked and a grey cursor artifact drawn onto the /dev/fb1, before any user specific javafx code is created. > > I have looked through the source code and there doesn't seem to be a configurable property to control this. > > I can remove /dev/fb1 and javafx prints an error/stack-trace but appears to work as normal, however I'm not sure what ongoing impact this has on javafx. > > any thoughts? > > > > End of openjfx-dev Digest, Vol 91, Issue 1 > ****************************************** > > > > > End of openjfx-dev Digest, Vol 91, Issue 2 > ****************************************** > From Michael.Doswald at schiller.ch Mon Jun 3 07:25:42 2019 From: Michael.Doswald at schiller.ch (Doswald Michael) Date: Mon, 3 Jun 2019 07:25:42 +0000 Subject: Can Javafx cursor be disabled? In-Reply-To: References: Message-ID: Hi, I had the same problem using i.MX6 with a touchscreen and Monocle on framebuffer (with JavaFX 1.8u151-b12). Unfortunately I could not find a workaround because, as you said, the gray cursor placeholder is displayed before any application code is executed. So there is no way to disable it using Java code. Since I compile the JavaFX part myself, I added the following patch to hide the cursor on startup. This seems to work for me: -------------------------------------------------------------------------------- diff -r fa07d9fbd309 modules/graphics/src/main/java/com/sun/glass/ui/monocle/MX6Cursor.java --- a/modules/graphics/src/main/java/com/sun/glass/ui/monocle/MX6Cursor.java Tue Sep 13 12:52:05 2016 -0400 +++ b/modules/graphics/src/main/java/com/sun/glass/ui/monocle/MX6Cursor.java Mon Sep 19 18:25:20 2016 +0200 @@ -154,6 +154,8 @@ NativeScreen screen = NativePlatformFactory.getNativePlatform().getScreen(); screenWidth = screen.getWidth(); screenHeight = screen.getHeight(); + + setVisibility(false); } @Override -------------------------------------------------------------------------------- Regards, Michael > Hi, thanks for. > > Yes we are currently running without X and using Monocle. > > Maybe I'll put up a feature request as with embedded devices often the > cursor is not a relevant modality. > > >> >> ------------------------------ >> >> Message: 3 >> Date: Sat, 1 Jun 2019 22:23:41 +0000 >> From: Thiago Milczarek Sayao >> To: "openjfx-dev at openjdk.java.net" >> Subject: RE: Can Javafx cursor be disabled? >> Message-ID: >> >> >> Content-Type: text/plain; charset="iso-8859-1" >> >> Just realized you might be using Monocle. >> >> So it might be handling the cursor. Don't know how to hide it.. >> ________________________________ >> De: openjfx-dev em nome de Thiago Milczarek Sayao >> Enviado: s?bado, 1 de junho de 2019 19:18 >> Para: openjfx-dev at openjdk.java.net >> Assunto: RE: Can Javafx cursor be disabled? >> >> I don't think javafx supports framebuffer. >> >> It might be working on gtk2, but will not work on gtk3 since the framebuffer backend was removed from gdk. >> >> So I suggest you move to X11. >> ________________________________ >> De: openjfx-dev em nome de Dell Green >> Enviado: s?bado, 1 de junho de 2019 16:28 >> Para: openjfx-dev at openjdk.java.net >> Assunto: RE: Can Javafx cursor be disabled? >> >> Thanks for that, good to know. I should of mentioned that we are not using X, but using framebuffer instead >> >> Message: 2 >> Date: Fri, 31 May 2019 14:45:11 +0000 >> From: Thiago Milczarek Sayao >> To: "openjfx-dev at openjdk.java.net" >> Subject: RE: Can Javafx cursor be disabled? >> Message-ID: >> >> >> Content-Type: text/plain; charset="us-ascii" >> >> If you are using X.org, the cursor is controlled by X, so I would look for a X configuration to disable cursor. >> >> https://unix.stackexchange.com/questions/346903/can-i-remove-the-mouse-pointer-entirely-from-x >> >> ________________________________ >> De: openjfx-dev em nome de Dell Green >> Enviado: sexta-feira, 31 de maio de 2019 11:29 >> Para: openjfx-dev at openjdk.java.net >> Assunto: Can Javafx cursor be disabled? >> >> We have a touch/rotary device that doesn't use any mouse/cursor input. >> >> Is there a way to tell javafx to not initialize a cursor (MX6Cursor.java in my case) on startup as we are seeing /dev/fb1 being unblanked and a grey cursor artifact drawn onto the /dev/fb1, before any user specific javafx code is created. >> >> I have looked through the source code and there doesn't seem to be a configurable property to control this. >> >> I can remove /dev/fb1 and javafx prints an error/stack-trace but appears to work as normal, however I'm not sure what ongoing impact this has on javafx. >> >> any thoughts? >> >> >> >> End of openjfx-dev Digest, Vol 91, Issue 1 >> ****************************************** >> >> >> >> >> End of openjfx-dev Digest, Vol 91, Issue 2 >> ****************************************** >> From anton.tarasov at jetbrains.com Mon Jun 3 18:01:38 2019 From: anton.tarasov at jetbrains.com (Anton Tarasov) Date: Mon, 3 Jun 2019 21:01:38 +0300 Subject: media crashes on RHEL 7.3 Message-ID: Hello, JDK 8.0_211-b12 crashes on Linux RHEL 7.3, loading libjfxmedia.so and its dependent libglib-lite.so (the dump is attached). This seems a regression of JDK-8199527 Is it a known issue, or should I file a bug? With regards, Anton. -------------- next part -------------- # # A fatal error has been detected by the Java Runtime Environment: # # SIGSEGV (0xb) at pc=0x00000000ffffffff, pid=8359, tid=0x00007f14ff7b0700 # # JRE version: Java(TM) SE Runtime Environment (8.0_211-b12) (build 1.8.0_211-b12) # Java VM: Java HotSpot(TM) 64-Bit Server VM (25.211-b12 mixed mode linux-amd64 compressed oops) # Problematic frame: # C 0x00000000ffffffff # # Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again # # If you would like to submit a bug report, please visit: # http://bugreport.java.com/bugreport/crash.jsp # The crash happened outside the Java Virtual Machine in native code. # See problematic frame for where to report the bug. # --------------- T H R E A D --------------- Current thread (0x00007f15b51e3000): JavaThread "JavaFX Application Thread" [_thread_in_native, id=8827, stack(0x00007f14ff6b0000,0x00007f14ff7b1000)] siginfo: si_signo: 11 (SIGSEGV), si_code: 1 (SEGV_MAPERR), si_addr: 0x00000000ffffffff Registers: RAX=0x00007f1618b6a840, RBX=0x000000000000001b, RCX=0x00007f14f0225410, RDX=0x00007ffde5e11be8 RSP=0x00007f14ff7ab2a8, RBP=0x00007ffde5e11b08, RSI=0x00007ffde5e11b08, RDI=0x000000000000001b R8 =0x0000000000000001, R9 =0x0000000000004000, R10=0x00007f14ff7ab030, R11=0x00007f161887a8b0 R12=0x00007ffde5e11be8, R13=0x00007f148f8d1378, R14=0x0000000000000002, R15=0x00007f148f8d1370 RIP=0x00000000ffffffff, EFLAGS=0x0000000000010202, CSGSFS=0x0000000000000033, ERR=0x0000000000000014 TRAPNO=0x000000000000000e Top of Stack: (sp=0x00007f14ff7ab2a8) 0x00007f14ff7ab2a8: 00007f148f5c218c 00007f148f648a80 0x00007f14ff7ab2b8: 0000000000000008 00007f148f64aedf 0x00007f14ff7ab2c8: 0000000000000020 00007f148f6430dd 0x00007f14ff7ab2d8: 0000000000000040 00007f148f648a6e 0x00007f14ff7ab2e8: 0000000000000080 000000000000001b 0x00007f14ff7ab2f8: 00007ffde5e11b08 000000000000001b 0x00007f14ff7ab308: 00007f16b3c41553 00007f14f02231a0 0x00007f14ff7ab318: 000000000000000a 0000000000000000 0x00007f14ff7ab328: 000000000000000a 00007f14ff7ab420 0x00007f14ff7ab338: 000000000000000a 0000000000000001 0x00007f14ff7ab348: 000000000000000a 00007f14f02231a0 0x00007f14ff7ab358: 00007f16b3c45c66 00007f14f02231a0 0x00007f14ff7ab368: 00007f14f0223680 00007f14f0223b90 0x00007f14ff7ab378: 00007f14f02246a0 00007f14ff7ab420 0x00007f14ff7ab388: 00007f16b3c45aa9 00007f14ff7ab3b0 0x00007f14ff7ab398: 00007f14ff7ab450 00007f1400000001 0x00007f14ff7ab3a8: 0000000000000050 00007f14ff7ab360 0x00007f14ff7ab3b8: 00007f14ff7ab390 0000000000000003 0x00007f14ff7ab3c8: 000000000000000a 00007f16b3e54120 0x00007f14ff7ab3d8: 000000000000000b 8000000100000001 0x00007f14ff7ab3e8: 00007f14ff7ab588 00007f16b3138250 0x00007f14ff7ab3f8: 00007f14ff7b06f8 0000000080000001 0x00007f14ff7ab408: 00007f14f0222920 00007ffde5e11b08 0x00007f14ff7ab418: 000000000000001b 00007f14ff7ab600 0x00007f14ff7ab428: 00007f16b3c41364 00007f14ff7b06f8 0x00007f14ff7ab438: 00007f14ff7ab578 00007f14ff7ab580 0x00007f14ff7ab448: 00007f14ff7ab570 00007f16b3c458b0 0x00007f14ff7ab458: 00007f14ff7ab588 00000000ff7ab480 0x00007f14ff7ab468: 00007f14ff7ab680 0000000000000000 0x00007f14ff7ab478: 0000000000000000 00007f167472f3d8 0x00007f14ff7ab488: fffffffffffffffe a10ea7a5be2cb2ce 0x00007f14ff7ab498: 0000000080000001 00007f14f0222920 Instructions: (pc=0x00000000ffffffff) 0x00000000ffffffdf: [error occurred during error reporting (printing registers, top of stack, instructions near pc), id 0xb] Register to memory mapping: RAX=0x00007f1618b6a840: in /lib64/libglib-2.0.so.0 at 0x00007f1618835000 RBX=0x000000000000001b is an unknown value RCX=0x00007f14f0225410 is an unknown value RDX=0x00007ffde5e11be8 is an unknown value RSP=0x00007f14ff7ab2a8 is pointing into the stack for thread: 0x00007f15b51e3000 RBP=0x00007ffde5e11b08 is an unknown value RSI=0x00007ffde5e11b08 is an unknown value RDI=0x000000000000001b is an unknown value R8 =0x0000000000000001 is an unknown value R9 =0x0000000000004000 is an unknown value R10=0x00007f14ff7ab030 is pointing into the stack for thread: 0x00007f15b51e3000 R11=0x00007f161887a8b0: glib__private__+0 in /lib64/libglib-2.0.so.0 at 0x00007f1618835000 R12=0x00007ffde5e11be8 is an unknown value R13=0x00007f148f8d1378: in /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libglib-lite.so at 0x00007f148f58f000 R14=0x0000000000000002 is an unknown value R15=0x00007f148f8d1370: in /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libglib-lite.so at 0x00007f148f58f000 Stack: [0x00007f14ff6b0000,0x00007f14ff7b1000], sp=0x00007f14ff7ab2a8, free space=1004k Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) C 0x00000000ffffffff Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) j java.lang.ClassLoader$NativeLibrary.load(Ljava/lang/String;Z)V+0 j java.lang.ClassLoader.loadLibrary0(Ljava/lang/Class;Ljava/io/File;)Z+328 j java.lang.ClassLoader.loadLibrary(Ljava/lang/Class;Ljava/lang/String;Z)V+48 j java.lang.Runtime.load0(Ljava/lang/Class;Ljava/lang/String;)V+57 j java.lang.System.load(Ljava/lang/String;)V+7 j com.sun.glass.utils.NativeLibLoader.loadLibraryFullPath(Ljava/lang/String;)V+342 j com.sun.glass.utils.NativeLibLoader.loadLibraryInternal(Ljava/lang/String;)V+1 j com.sun.glass.utils.NativeLibLoader.loadLibrary(Ljava/lang/String;)V+11 j com.sun.media.jfxmediaimpl.NativeMediaManager.lambda$new$33()Ljava/lang/Object;+36 j com.sun.media.jfxmediaimpl.NativeMediaManager$$Lambda$3272.run()Ljava/lang/Object;+0 v ~StubRoutines::call_stub J 5545 java.security.AccessController.doPrivileged(Ljava/security/PrivilegedExceptionAction;)Ljava/lang/Object; (0 bytes) @ 0x00007f169db7508f [0x00007f169db75040+0x4f] j com.sun.media.jfxmediaimpl.NativeMediaManager.()V+42 j com.sun.media.jfxmediaimpl.NativeMediaManager$NativeMediaManagerInitializer.()V+4 v ~StubRoutines::call_stub j com.sun.media.jfxmediaimpl.NativeMediaManager.getDefaultInstance()Lcom/sun/media/jfxmediaimpl/NativeMediaManager;+0 j com.sun.media.jfxmedia.MediaManager.getSupportedContentTypes()[Ljava/lang/String;+0 j com.sun.javafx.webkit.prism.PrismGraphicsManager.getSupportedMediaTypes()[Ljava/lang/String;+0 v ~StubRoutines::call_stub j com.sun.webkit.network.URLLoader.twkDidFinishLoading(J)V+0 j com.sun.webkit.network.URLLoader.notifyDidFinishLoading()V+44 j com.sun.webkit.network.URLLoader.lambda$didFinishLoading$102()V+8 j com.sun.webkit.network.URLLoader$$Lambda$2558.run()V+4 j com.sun.javafx.application.PlatformImpl.lambda$null$402(Ljava/lang/Runnable;)Ljava/lang/Void;+1 j com.sun.javafx.application.PlatformImpl$$Lambda$2221.run()Ljava/lang/Object;+4 v ~StubRoutines::call_stub J 3192 java.security.AccessController.doPrivileged(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;)Ljava/lang/Object; (0 bytes) @ 0x00007f169d3324e3 [0x00007f169d332480+0x63] j com.sun.javafx.application.PlatformImpl.lambda$runLater$403(Ljava/lang/Runnable;Ljava/security/AccessControlContext;)V+7 j com.sun.javafx.application.PlatformImpl$$Lambda$2220.run()V+8 J 19532 C1 com.sun.glass.ui.InvokeLaterDispatcher$Future.run()V (91 bytes) @ 0x00007f169fd6f4d4 [0x00007f169fd6f3c0+0x114] v ~StubRoutines::call_stub j com.sun.glass.ui.gtk.GtkApplication._runLoop(Ljava/lang/Runnable;Z)V+0 j com.sun.glass.ui.gtk.GtkApplication.lambda$null$208(Ljava/lang/Runnable;Z)V+7 j com.sun.glass.ui.gtk.GtkApplication$$Lambda$1976.run()V+12 j java.lang.Thread.run()V+11 v ~StubRoutines::call_stub --------------- P R O C E S S --------------- Java Threads: ( => current thread ) 0x00007f14f021f800 JavaThread "URL-Loader-12" daemon [_thread_blocked, id=8953, stack(0x00007f14900fe000,0x00007f14901ff000)] 0x00007f14f021d800 JavaThread "URL-Loader-11" daemon [_thread_in_native, id=8952, stack(0x00007f14901ff000,0x00007f1490300000)] 0x00007f14f021b800 JavaThread "URL-Loader-10" daemon [_thread_in_Java, id=8951, stack(0x00007f14904fd000,0x00007f14905fe000)] 0x00007f14f0219800 JavaThread "URL-Loader-9" daemon [_thread_in_Java, id=8950, stack(0x00007f14905fe000,0x00007f14906ff000)] 0x00007f14f0217800 JavaThread "URL-Loader-8" daemon [_thread_in_Java, id=8949, stack(0x00007f14906ff000,0x00007f1490800000)] 0x00007f14f0216800 JavaThread "URL-Loader-7" daemon [_thread_blocked, id=8948, stack(0x00007f1490dfe000,0x00007f1490eff000)] 0x00007f14f0214000 JavaThread "URL-Loader-6" daemon [_thread_blocked, id=8945, stack(0x00007f14910ff000,0x00007f1491200000)] 0x00007f14f0211800 JavaThread "URL-Loader-5" daemon [_thread_blocked, id=8944, stack(0x00007f14a8875000,0x00007f14a8976000)] 0x00007f1530001000 JavaThread "JobScheduler FJ pool 8/11" daemon [_thread_blocked, id=8942, stack(0x00007f14963c1000,0x00007f14964c2000)] 0x00007f1520002000 JavaThread "JobScheduler FJ pool 0/11" daemon [_thread_blocked, id=8941, stack(0x00007f15858fd000,0x00007f15859fe000)] 0x00007f14f01d9800 JavaThread "URL-Loader-4" daemon [_thread_blocked, id=8876, stack(0x00007f14988fe000,0x00007f14989ff000)] 0x00007f14f01d7800 JavaThread "URL-Loader-3" daemon [_thread_blocked, id=8875, stack(0x00007f14989ff000,0x00007f1498b00000)] 0x00007f14f01d6000 JavaThread "URL-Loader-2" daemon [_thread_blocked, id=8874, stack(0x00007f14ff5af000,0x00007f14ff6b0000)] 0x00007f14f01d4800 JavaThread "URL-Loader-1" daemon [_thread_blocked, id=8873, stack(0x00007f1499efb000,0x00007f1499ffc000)] 0x00007f14f4007800 JavaThread "R2 Nio Event Loop-1-12" [_thread_in_native, id=8868, stack(0x00007f14a00f6000,0x00007f14a01f7000)] 0x00007f15e008b800 JavaThread "Process I/O pool 9" [_thread_blocked, id=8867, stack(0x00007f14a01f7000,0x00007f14a02f8000)] 0x00007f15e0088800 JavaThread "Process I/O pool 8" [_thread_blocked, id=8866, stack(0x00007f14a02f8000,0x00007f14a03f9000)] 0x00007f15e0086000 JavaThread "Process I/O pool 7" [_thread_blocked, id=8865, stack(0x00007f14a1dfc000,0x00007f14a1efd000)] 0x00007f15e0085800 JavaThread "process reaper" daemon [_thread_blocked, id=8864, stack(0x00007f14fe4c7000,0x00007f14fe500000)] 0x00007f14a4007000 JavaThread "R2 Nio Event Loop-1-11" [_thread_in_native, id=8843, stack(0x00007f14a1efd000,0x00007f14a1ffe000)] 0x00007f14f019b000 JavaThread "R2 Nio Event Loop-1-10" [_thread_in_native, id=8842, stack(0x00007f14a824e000,0x00007f14a834f000)] 0x00007f149c002000 JavaThread "R2 Nio Event Loop-1-9" [_thread_in_native, id=8841, stack(0x00007f14a834f000,0x00007f14a8450000)] 0x00007f15b6079000 JavaThread "LI IDEA Metrics Submit Thread" [_thread_blocked, id=8840, stack(0x00007f14a8976000,0x00007f14a8a77000)] 0x00007f1594056000 JavaThread "R2 Nio Event Loop-1-8" [_thread_in_native, id=8838, stack(0x00007f14a8c77000,0x00007f14a8d78000)] 0x00007f15c9b19800 JavaThread "R2 Nio Event Loop-1-7" [_thread_in_native, id=8836, stack(0x00007f14aad7a000,0x00007f14aae7b000)] 0x00007f15cc05d800 JavaThread "R2 Nio Event Loop-1-6" [_thread_in_native, id=8835, stack(0x00007f14aae7b000,0x00007f14aaf7c000)] 0x00007f154801a800 JavaThread "R2 Nio Event Loop-1-5" [_thread_in_native, id=8834, stack(0x00007f14aaf7c000,0x00007f14ab07d000)] 0x00007f15e007c800 JavaThread "R2 Nio Event Loop-1-4" [_thread_in_native, id=8833, stack(0x00007f14fc0fd000,0x00007f14fc1fe000)] 0x00007f15d445f800 JavaThread "FUS dictionary loader" daemon [_thread_blocked, id=8832, stack(0x00007f14fc1fe000,0x00007f14fc2ff000)] 0x00007f14f0114800 JavaThread "Disposer" daemon [_thread_blocked, id=8831, stack(0x00007f14fc4ff000,0x00007f14fc600000)] 0x00007f14f0115800 JavaThread "Prism Font Disposer" daemon [_thread_blocked, id=8829, stack(0x00007f14fc7f0000,0x00007f14fc8f1000)] =>0x00007f15b51e3000 JavaThread "JavaFX Application Thread" [_thread_in_native, id=8827, stack(0x00007f14ff6b0000,0x00007f14ff7b1000)] 0x00007f15b51e0800 JavaThread "Thread-7" daemon [_thread_blocked, id=8826, stack(0x00007f14ff7b1000,0x00007f14ff8b2000)] 0x00007f15b51d0000 JavaThread "QuantumRenderer-0" daemon [_thread_blocked, id=8825, stack(0x00007f156d4f1000,0x00007f156d5f2000)] 0x00007f1594054800 JavaThread "R2 Nio Event Loop-1-3" [_thread_in_native, id=8824, stack(0x00007f151ebfa000,0x00007f151ecfb000)] 0x00007f15e4080000 JavaThread "RMI RenewClean-[127.0.0.1:33573]" daemon [_thread_blocked, id=8822, stack(0x00007f151f2fb000,0x00007f151f3fc000)] 0x00007f1518001000 JavaThread "RMI TCP Connection(1)-127.0.0.1" daemon [_thread_in_native, id=8821, stack(0x00007f151f3fc000,0x00007f151f4fd000)] 0x00007f158000f800 JavaThread "RMI Scheduler(0)" daemon [_thread_blocked, id=8818, stack(0x00007f151f4fd000,0x00007f151f5fe000)] 0x00007f1580009000 JavaThread "GC Daemon" daemon [_thread_blocked, id=8816, stack(0x00007f151f7fe000,0x00007f151f8ff000)] 0x00007f1580007000 JavaThread "RMI Reaper" [_thread_blocked, id=8815, stack(0x00007f151f8ff000,0x00007f151fa00000)] 0x00007f1580003800 JavaThread "RMI TCP Accept-0" daemon [_thread_in_native, id=8814, stack(0x00007f156c0ed000,0x00007f156c1ee000)] 0x00007f155c037000 JavaThread "MultiThreadedHttpConnectionManager cleanup" daemon [_thread_blocked, id=8786, stack(0x00007f156cdee000,0x00007f156ceef000)] 0x00007f1540003000 JavaThread "JobScheduler FJ pool 9/11" daemon [_thread_blocked, id=8785, stack(0x00007f156d2ef000,0x00007f156d3f0000)] 0x00007f1544001000 JavaThread "JobScheduler FJ pool 10/11" daemon [_thread_blocked, id=8784, stack(0x00007f156d3f0000,0x00007f156d4f1000)] 0x00007f15f0007000 JavaThread "JobScheduler FJ pool 6/11" daemon [_thread_blocked, id=8782, stack(0x00007f156d5f2000,0x00007f156d6f3000)] 0x00007f1570002800 JavaThread "JobScheduler FJ pool 5/11" daemon [_thread_blocked, id=8781, stack(0x00007f156d6f3000,0x00007f156d7f4000)] 0x00007f1540001000 JavaThread "JobScheduler FJ pool 7/11" daemon [_thread_blocked, id=8780, stack(0x00007f156d7f4000,0x00007f156d8f5000)] 0x00007f157c001000 JavaThread "JobScheduler FJ pool 4/11" daemon [_thread_blocked, id=8779, stack(0x00007f156d8f5000,0x00007f156d9f6000)] 0x00007f15f0005800 JavaThread "JobScheduler FJ pool 3/11" daemon [_thread_blocked, id=8778, stack(0x00007f156d9f6000,0x00007f156daf7000)] 0x00007f1570001000 JavaThread "JobScheduler FJ pool 2/11" daemon [_thread_blocked, id=8777, stack(0x00007f156daf7000,0x00007f156dbf8000)] 0x00007f15ec001000 JavaThread "ApplicationImpl pooled thread 16" daemon [_thread_blocked, id=8698, stack(0x00007f156e9f8000,0x00007f156eaf9000)] 0x00007f15d4ce1800 JavaThread "ApplicationImpl pooled thread 15" [_thread_blocked, id=8697, stack(0x00007f156eaf9000,0x00007f156ebfa000)] 0x00007f15d4ce0000 JavaThread "ApplicationImpl pooled thread 14" [_thread_blocked, id=8696, stack(0x00007f156ebfa000,0x00007f156ecfb000)] 0x00007f15d4cde000 JavaThread "EditorNotificationsImpl Pool" [_thread_blocked, id=8695, stack(0x00007f156ecfb000,0x00007f156edfc000)] 0x00007f15d4cdc800 JavaThread "ApplicationImpl pooled thread 12" [_thread_blocked, id=8694, stack(0x00007f156edfc000,0x00007f156eefd000)] 0x00007f1594052000 JavaThread "R2 Nio Event Loop-1-2" [_thread_in_native, id=8693, stack(0x00007f156eefd000,0x00007f156effe000)] 0x00007f15d49c6000 JavaThread "Image Fetcher 1" daemon [_thread_blocked, id=8692, stack(0x00007f1584221000,0x00007f1584322000)] 0x00007f15c861f000 JavaThread "JobScheduler FJ pool 1/11" daemon [_thread_blocked, id=8688, stack(0x00007f15857fc000,0x00007f15858fd000)] 0x00007f15dceee800 JavaThread "Image Fetcher 0" daemon [_thread_blocked, id=8661, stack(0x00007f15875fe000,0x00007f15876ff000)] 0x00007f15b6b5f000 JavaThread "BaseDataReader: output stream of java" [_thread_in_native, id=8433, stack(0x00007f1587cff000,0x00007f1587e00000)] 0x00007f15b6b5b800 JavaThread "BaseDataReader: error stream of java" [_thread_in_native, id=8432, stack(0x00007f1603446000,0x00007f1603547000)] 0x00007f15b6b56000 JavaThread "java" [_thread_blocked, id=8429, stack(0x00007f159c0fa000,0x00007f159c1fb000)] 0x00007f159403c800 JavaThread "Netty threadDeathWatcher-2-1" daemon [_thread_blocked, id=8422, stack(0x00007f159d3fc000,0x00007f159d4fd000)] 0x00007f15d808c800 JavaThread "R2 Nio Event Loop-1-1" [_thread_in_native, id=8421, stack(0x00007f159d8fd000,0x00007f159d9fe000)] 0x00007f15d806f800 JavaThread "R2 Netty Scheduler-2-1" [_thread_blocked, id=8420, stack(0x00007f159dbfe000,0x00007f159dcff000)] 0x00007f15b5ef7800 JavaThread "pool-1-thread-1" [_thread_in_native, id=8419, stack(0x00007f159f0ff000,0x00007f159f200000)] 0x00007f15c8017800 JavaThread "TimerQueue" daemon [_thread_blocked, id=8418, stack(0x00007f15b8914000,0x00007f15b8a15000)] 0x00007f15c8016800 JavaThread "Netty Builtin Server 2" [_thread_in_native, id=8416, stack(0x00007f15b8e41000,0x00007f15b8f42000)] 0x00007f15b4cf0000 JavaThread "process reaper" daemon [_thread_in_native, id=8415, stack(0x00007f15b9c95000,0x00007f15b9cce000)] 0x00007f15dc02d000 JavaThread "BaseDataReader: error stream of fsnotifier64" [_thread_in_native, id=8413, stack(0x00007f15b9ed9000,0x00007f15b9fda000)] 0x00007f15dc02c000 JavaThread "BaseDataReader: output stream of fsnotifier64" [_thread_in_native, id=8412, stack(0x00007f15b9fda000,0x00007f15ba0db000)] 0x00007f15dc02a800 JavaThread "fsnotifier64" [_thread_blocked, id=8411, stack(0x00007f1665989000,0x00007f1665a8a000)] 0x00007f1620912800 JavaThread "AWT-EventQueue-0" [_thread_in_vm, id=8409, stack(0x00007f16017eb000,0x00007f16018ec000)] 0x00007f1620907000 JavaThread "AWT-Shutdown" [_thread_blocked, id=8408, stack(0x00007f16018ec000,0x00007f16019ed000)] 0x00007f16208f6800 JavaThread "Keep-Alive-Timer" daemon [_thread_blocked, id=8407, stack(0x00007f16019ed000,0x00007f1601aee000)] 0x00007f16208b0800 JavaThread "ApplicationImpl pooled thread 11" [_thread_blocked, id=8406, stack(0x00007f1601f0c000,0x00007f160200d000)] 0x00007f16208ae800 JavaThread "ApplicationImpl pooled thread 10" [_thread_in_native, id=8405, stack(0x00007f160200d000,0x00007f160210e000)] 0x00007f16208ad000 JavaThread "ApplicationImpl pooled thread 9" [_thread_blocked, id=8404, stack(0x00007f160210e000,0x00007f160220f000)] 0x00007f16208ab000 JavaThread "ApplicationImpl pooled thread 8" [_thread_blocked, id=8403, stack(0x00007f160220f000,0x00007f1602310000)] 0x00007f16208a9800 JavaThread "ApplicationImpl pooled thread 7" [_thread_blocked, id=8402, stack(0x00007f1602310000,0x00007f1602411000)] 0x00007f16208a7800 JavaThread "ApplicationImpl pooled thread 6" [_thread_blocked, id=8401, stack(0x00007f1602411000,0x00007f1602512000)] 0x00007f16208a5800 JavaThread "ApplicationImpl pooled thread 5" [_thread_blocked, id=8400, stack(0x00007f1602512000,0x00007f1602613000)] 0x00007f16208a4000 JavaThread "ApplicationImpl pooled thread 4" [_thread_blocked, id=8399, stack(0x00007f1602613000,0x00007f1602714000)] 0x00007f16208a3000 JavaThread "ApplicationImpl pooled thread 3" [_thread_blocked, id=8398, stack(0x00007f1602714000,0x00007f1602815000)] 0x00007f162089f000 JavaThread "ApplicationImpl pooled thread 2" [_thread_blocked, id=8397, stack(0x00007f1602815000,0x00007f1602916000)] 0x00007f162089d000 JavaThread "ApplicationImpl pooled thread 1" [_thread_blocked, id=8396, stack(0x00007f1602916000,0x00007f1602a17000)] 0x00007f16207d6800 JavaThread "Periodic tasks thread" daemon [_thread_blocked, id=8395, stack(0x00007f1602c17000,0x00007f1602d18000)] 0x00007f1620756000 JavaThread "Timer-0" daemon [_thread_blocked, id=8394, stack(0x00007f1602d18000,0x00007f1602e19000)] 0x00007f162066f000 JavaThread "Batik CleanerThread" daemon [_thread_blocked, id=8392, stack(0x00007f1603547000,0x00007f1603648000)] 0x00007f1620375800 JavaThread "Netty Builtin Server 1" [_thread_in_native, id=8391, stack(0x00007f161b4dd000,0x00007f161b5de000)] 0x00007f16201a2000 JavaThread "process reaper" daemon [_thread_in_native, id=8390, stack(0x00007f164005c000,0x00007f1640095000)] 0x00007f1620143000 JavaThread "AWT-XAWT" daemon [_thread_blocked, id=8388, stack(0x00007f161baee000,0x00007f161bbef000)] 0x00007f1620120800 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=8387, stack(0x00007f1640095000,0x00007f1640196000)] 0x00007f16ac00f000 JavaThread "DestroyJavaVM" [_thread_blocked, id=8360, stack(0x00007f16b3d34000,0x00007f16b3e35000)] 0x00007f16ac174000 JavaThread "Service Thread" daemon [_thread_blocked, id=8384, stack(0x00007f16666f9000,0x00007f16667fa000)] 0x00007f16ac156800 JavaThread "C1 CompilerThread3" daemon [_thread_blocked, id=8383, stack(0x00007f16667fa000,0x00007f16668fb000)] 0x00007f16ac154800 JavaThread "C2 CompilerThread2" daemon [_thread_in_native, id=8382, stack(0x00007f16668fb000,0x00007f16669fc000)] 0x00007f16ac152000 JavaThread "C2 CompilerThread1" daemon [_thread_in_native, id=8381, stack(0x00007f16669fc000,0x00007f1666afd000)] 0x00007f16ac150000 JavaThread "C2 CompilerThread0" daemon [_thread_in_native, id=8380, stack(0x00007f1666afd000,0x00007f1666bfe000)] 0x00007f16ac14d800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=8379, stack(0x00007f1666bfe000,0x00007f1666cff000)] 0x00007f16ac14c800 JavaThread "Surrogate Locker Thread (Concurrent GC)" daemon [_thread_blocked, id=8378, stack(0x00007f167407c000,0x00007f167417d000)] 0x00007f16ac119000 JavaThread "Finalizer" daemon [_thread_blocked, id=8377, stack(0x00007f167417d000,0x00007f167427e000)] 0x00007f16ac116000 JavaThread "Reference Handler" daemon [_thread_blocked, id=8376, stack(0x00007f167427e000,0x00007f167437f000)] Other Threads: 0x00007f16ac10c800 VMThread [stack: 0x00007f167437f000,0x00007f1674480000] [id=8375] 0x00007f16ac17f000 WatcherThread [stack: 0x00007f16665f8000,0x00007f16666f9000] [id=8385] VM state:not at safepoint (normal execution) VM Mutex/Monitor currently owned by a thread: None heap address: 0x00000005c0000000, size: 8192 MB, Compressed Oops mode: Zero based, Oop shift amount: 3 Narrow klass base: 0x0000000000000000, Narrow klass shift: 3 Compressed class space size: 1073741824 Address: 0x00000007c0000000 Heap: par new generation total 766784K, used 672747K [0x00000005c0000000, 0x00000005f4000000, 0x00000005f4000000) eden space 681600K, 89% used [0x00000005c0000000, 0x00000005e56ee6a8, 0x00000005e99a0000) from space 85184K, 69% used [0x00000005e99a0000, 0x00000005ed3ac5f0, 0x00000005eecd0000) to space 85184K, 0% used [0x00000005eecd0000, 0x00000005eecd0000, 0x00000005f4000000) concurrent mark-sweep generation total 208164K, used 124898K [0x00000005f4000000, 0x0000000600b49000, 0x00000007c0000000) Metaspace used 281391K, capacity 298822K, committed 298924K, reserved 1306624K class space used 38628K, capacity 42454K, committed 42556K, reserved 1048576K Card table byte_map: [0x00007f1676fff000,0x00007f1678000000] byte_map_base: 0x00007f16741ff000 Marking Bits: (CMSBitMap*) 0x00007f16ac0b2608 Bits: [0x00007f1668cff000, 0x00007f166ffff000) Mod Union Table: (CMSBitMap*) 0x00007f16ac0b26c8 Bits: [0x00007f1675fd1000, 0x00007f167619d000) Polling page: 0x00007f16b3e50000 CodeCache: size=245760Kb used=50052Kb max_used=50052Kb free=195707Kb bounds [0x00007f169d000000, 0x00007f16a0150000, 0x00007f16ac000000] total_blobs=17697 nmethods=16256 adapters=1350 compilation: enabled Compilation events (10 events): Event: 22.468 Thread 0x00007f16ac156800 20843 3 sun.security.ssl.SSLSocketImpl::checkSequenceNumber (137 bytes) Event: 22.469 Thread 0x00007f16ac156800 nmethod 20843 0x00007f169fd45550 code [0x00007f169fd45720, 0x00007f169fd460e8] Event: 22.469 Thread 0x00007f16ac156800 20844 3 sun.security.ssl.InputRecord::read (127 bytes) Event: 22.469 Thread 0x00007f16ac156800 nmethod 20844 0x00007f169e2a9990 code [0x00007f169e2a9b60, 0x00007f169e2aa088] Event: 22.469 Thread 0x00007f16ac156800 20845 ! 3 sun.security.ssl.InputRecord::decrypt (303 bytes) Event: 22.471 Thread 0x00007f16ac156800 nmethod 20845 0x00007f169d819b50 code [0x00007f169d819e20, 0x00007f169d81b668] Event: 22.471 Thread 0x00007f16ac156800 20848 3 sun.security.ssl.Authenticator::seqNumOverflow (85 bytes) Event: 22.471 Thread 0x00007f16ac156800 nmethod 20848 0x00007f169e8f1b50 code [0x00007f169e8f1ce0, 0x00007f169e8f2110] Event: 22.471 Thread 0x00007f16ac156800 20847 ! 3 sun.security.ssl.CipherBox::applyExplicitNonce (325 bytes) Event: 22.473 Thread 0x00007f16ac150000 nmethod 20824 0x00007f169e8faf90 code [0x00007f169e8fb160, 0x00007f169e8fba48] GC Heap History (8 events): Event: 4.557 GC heap before {Heap before GC invocations=0 (full 1): par new generation total 766784K, used 681600K [0x00000005c0000000, 0x00000005f4000000, 0x00000005f4000000) eden space 681600K, 100% used [0x00000005c0000000, 0x00000005e99a0000, 0x00000005e99a0000) from space 85184K, 0% used [0x00000005e99a0000, 0x00000005e99a0000, 0x00000005eecd0000) to space 85184K, 0% used [0x00000005eecd0000, 0x00000005eecd0000, 0x00000005f4000000) concurrent mark-sweep generation total 196608K, used 0K [0x00000005f4000000, 0x0000000600000000, 0x00000007c0000000) Metaspace used 43677K, capacity 44956K, committed 45124K, reserved 1089536K class space used 4977K, capacity 5213K, committed 5232K, reserved 1048576K Event: 4.596 GC heap after Heap after GC invocations=1 (full 1): par new generation total 766784K, used 61065K [0x00000005c0000000, 0x00000005f4000000, 0x00000005f4000000) eden space 681600K, 0% used [0x00000005c0000000, 0x00000005c0000000, 0x00000005e99a0000) from space 85184K, 71% used [0x00000005eecd0000, 0x00000005f28725a8, 0x00000005f4000000) to space 85184K, 0% used [0x00000005e99a0000, 0x00000005e99a0000, 0x00000005eecd0000) concurrent mark-sweep generation total 196608K, used 0K [0x00000005f4000000, 0x0000000600000000, 0x00000007c0000000) Metaspace used 43677K, capacity 44956K, committed 45124K, reserved 1089536K class space used 4977K, capacity 5213K, committed 5232K, reserved 1048576K } Event: 9.691 GC heap before {Heap before GC invocations=1 (full 2): par new generation total 766784K, used 742665K [0x00000005c0000000, 0x00000005f4000000, 0x00000005f4000000) eden space 681600K, 100% used [0x00000005c0000000, 0x00000005e99a0000, 0x00000005e99a0000) from space 85184K, 71% used [0x00000005eecd0000, 0x00000005f28725a8, 0x00000005f4000000) to space 85184K, 0% used [0x00000005e99a0000, 0x00000005e99a0000, 0x00000005eecd0000) concurrent mark-sweep generation total 196608K, used 0K [0x00000005f4000000, 0x0000000600000000, 0x00000007c0000000) Metaspace used 142860K, capacity 150443K, committed 150496K, reserved 1179648K class space used 18695K, capacity 20676K, committed 20692K, reserved 1048576K Event: 9.819 GC heap after Heap after GC invocations=2 (full 2): par new generation total 766784K, used 85183K [0x00000005c0000000, 0x00000005f4000000, 0x00000005f4000000) eden space 681600K, 0% used [0x00000005c0000000, 0x00000005c0000000, 0x00000005e99a0000) from space 85184K, 99% used [0x00000005e99a0000, 0x00000005eeccfff8, 0x00000005eecd0000) to space 85184K, 0% used [0x00000005eecd0000, 0x00000005eecd0000, 0x00000005f4000000) concurrent mark-sweep generation total 196608K, used 65096K [0x00000005f4000000, 0x0000000600000000, 0x00000007c0000000) Metaspace used 142860K, capacity 150443K, committed 150496K, reserved 1179648K class space used 18695K, capacity 20676K, committed 20692K, reserved 1048576K } Event: 14.637 GC heap before {Heap before GC invocations=2 (full 3): par new generation total 766784K, used 766783K [0x00000005c0000000, 0x00000005f4000000, 0x00000005f4000000) eden space 681600K, 100% used [0x00000005c0000000, 0x00000005e99a0000, 0x00000005e99a0000) from space 85184K, 99% used [0x00000005e99a0000, 0x00000005eeccfff8, 0x00000005eecd0000) to space 85184K, 0% used [0x00000005eecd0000, 0x00000005eecd0000, 0x00000005f4000000) concurrent mark-sweep generation total 196608K, used 65096K [0x00000005f4000000, 0x0000000600000000, 0x00000007c0000000) Metaspace used 218074K, capacity 229489K, committed 229804K, reserved 1247232K class space used 29687K, capacity 32502K, committed 32572K, reserved 1048576K Event: 14.708 GC heap after Heap after GC invocations=3 (full 3): par new generation total 766784K, used 78308K [0x00000005c0000000, 0x00000005f4000000, 0x00000005f4000000) eden space 681600K, 0% used [0x00000005c0000000, 0x00000005c0000000, 0x00000005e99a0000) from space 85184K, 91% used [0x00000005eecd0000, 0x00000005f3949020, 0x00000005f4000000) to space 85184K, 0% used [0x00000005e99a0000, 0x00000005e99a0000, 0x00000005eecd0000) concurrent mark-sweep generation total 196608K, used 112862K [0x00000005f4000000, 0x0000000600000000, 0x00000007c0000000) Metaspace used 218074K, capacity 229489K, committed 229804K, reserved 1247232K class space used 29687K, capacity 32502K, committed 32572K, reserved 1048576K } Event: 17.835 GC heap before {Heap before GC invocations=3 (full 3): par new generation total 766784K, used 759908K [0x00000005c0000000, 0x00000005f4000000, 0x00000005f4000000) eden space 681600K, 100% used [0x00000005c0000000, 0x00000005e99a0000, 0x00000005e99a0000) from space 85184K, 91% used [0x00000005eecd0000, 0x00000005f3949020, 0x00000005f4000000) to space 85184K, 0% used [0x00000005e99a0000, 0x00000005e99a0000, 0x00000005eecd0000) concurrent mark-sweep generation total 196608K, used 94747K [0x00000005f4000000, 0x0000000600000000, 0x00000007c0000000) Metaspace used 244715K, capacity 258855K, committed 258988K, reserved 1271808K class space used 33556K, capacity 36856K, committed 36924K, reserved 1048576K Event: 17.883 GC heap after Heap after GC invocations=4 (full 3): par new generation total 766784K, used 59441K [0x00000005c0000000, 0x00000005f4000000, 0x00000005f4000000) eden space 681600K, 0% used [0x00000005c0000000, 0x00000005c0000000, 0x00000005e99a0000) from space 85184K, 69% used [0x00000005e99a0000, 0x00000005ed3ac5f0, 0x00000005eecd0000) to space 85184K, 0% used [0x00000005eecd0000, 0x00000005eecd0000, 0x00000005f4000000) concurrent mark-sweep generation total 196608K, used 127473K [0x00000005f4000000, 0x0000000600000000, 0x00000007c0000000) Metaspace used 244715K, capacity 258855K, committed 258988K, reserved 1271808K class space used 33556K, capacity 36856K, committed 36924K, reserved 1048576K } Deoptimization events (10 events): Event: 22.452 Thread 0x00007f14f021b800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00007f169dbbb2cc method=sun.security.provider.DigestBase.engineReset()V @ 11 Event: 22.455 Thread 0x00007f14f021b800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00007f169e0921b4 method=javax.crypto.Mac.update([B)V @ 33 Event: 22.455 Thread 0x00007f14f021b800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00007f169e12a594 method=java.security.MessageDigest$Delegate.engineDigest([BII)I @ 7 Event: 22.459 Thread 0x00007f14f021b800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00007f169e0921b4 method=javax.crypto.Mac.update([B)V @ 33 Event: 22.460 Thread 0x00007f14f021b800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00007f169e12a594 method=java.security.MessageDigest$Delegate.engineDigest([BII)I @ 7 Event: 22.460 Thread 0x00007f14f021b800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00007f169e12a594 method=java.security.MessageDigest$Delegate.engineDigest([BII)I @ 7 Event: 22.461 Thread 0x00007f14f021b800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00007f169e0921b4 method=javax.crypto.Mac.update([B)V @ 33 Event: 22.461 Thread 0x00007f14f021b800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00007f169e12a594 method=java.security.MessageDigest$Delegate.engineDigest([BII)I @ 7 Event: 22.468 Thread 0x00007f14f021b800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00007f169e0921b4 method=javax.crypto.Mac.update([B)V @ 33 Event: 22.468 Thread 0x00007f1620912800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007f169ebfd68c method=sun.font.FileFontStrike.getGlyphImagePtrs([I[JI)V @ 45 Classes redefined (0 events): No events Internal exceptions (10 events): Event: 22.072 Thread 0x00007f15f0005800 Exception (0x00000005de910728) thrown at [/HUDSON/workspace/8-2-build-linux-amd64/jdk8u211/12973/hotspot/src/share/vm/interpreter/interpreterRuntime.cpp, line 368] Event: 22.072 Thread 0x00007f15f0005800 Exception (0x00000005de911860) thrown at [/HUDSON/workspace/8-2-build-linux-amd64/jdk8u211/12973/hotspot/src/share/vm/prims/jni.cpp, line 710] Event: 22.133 Thread 0x00007f1620912800 Exception (0x00000005dfb7d590) thrown at [/HUDSON/workspace/8-2-build-linux-amd64/jdk8u211/12973/hotspot/src/share/vm/interpreter/interpreterRuntime.cpp, line 368] Event: 22.163 Thread 0x00007f1620912800 Exception (0x00000005dfbb06f0) thrown at [/HUDSON/workspace/8-2-build-linux-amd64/jdk8u211/12973/hotspot/src/share/vm/prims/jni.cpp, line 736] Event: 22.214 Thread 0x00007f15b51e3000 Exception (0x00000005e41da950) thrown at [/HUDSON/workspace/8-2-build-linux-amd64/jdk8u211/12973/hotspot/src/share/vm/prims/jni.cpp, line 710] Event: 22.214 Thread 0x00007f15b51e3000 Exception (0x00000005e41db450) thrown at [/HUDSON/workspace/8-2-build-linux-amd64/jdk8u211/12973/hotspot/src/share/vm/prims/jni.cpp, line 710] Event: 22.229 Thread 0x00007f15b51e3000 Exception (0x00000005e420fd78) thrown at [/HUDSON/workspace/8-2-build-linux-amd64/jdk8u211/12973/hotspot/src/share/vm/prims/jni.cpp, line 710] Event: 22.229 Thread 0x00007f15b51e3000 Exception (0x00000005e4210878) thrown at [/HUDSON/workspace/8-2-build-linux-amd64/jdk8u211/12973/hotspot/src/share/vm/prims/jni.cpp, line 710] Event: 22.317 Thread 0x00007f1520002000 Exception (0x00000005e48308b0) thrown at [/HUDSON/workspace/8-2-build-linux-amd64/jdk8u211/12973/hotspot/src/share/vm/interpreter/interpreterRuntime.cpp, line 368] Event: 22.317 Thread 0x00007f1520002000 Exception (0x00000005e4838830) thrown at [/HUDSON/workspace/8-2-build-linux-amd64/jdk8u211/12973/hotspot/src/share/vm/prims/jni.cpp, line 710] Events (10 events): Event: 22.469 loading class com/sun/media/jfxmediaimpl/NativeMediaManager$NativeMediaPlayerDisposer done Event: 22.469 loading class com/sun/media/jfxmediaimpl/NativeMediaManager$NativeMediaManagerInitializer Event: 22.469 loading class com/sun/media/jfxmediaimpl/NativeMediaManager$NativeMediaManagerInitializer done Event: 22.469 loading class com/intellij/openapi/application/ex/ClipboardUtil Event: 22.469 loading class com/intellij/openapi/application/ex/ClipboardUtil done Event: 22.470 loading class com/sun/media/jfxmediaimpl/HostUtils Event: 22.470 loading class com/sun/media/jfxmediaimpl/HostUtils done Event: 22.470 loading class com/intellij/ide/ClipboardSynchronizer Event: 22.470 loading class com/intellij/ide/ClipboardSynchronizer done Event: 22.473 loading class sun/awt/X11/XSelectionEvent Dynamic libraries: 00400000-00401000 r-xp 00000000 08:02 15473026 /export/apps/xtools/LNKD-intellij-2019.1/jre64/bin/java 00600000-00601000 r--p 00000000 08:02 15473026 /export/apps/xtools/LNKD-intellij-2019.1/jre64/bin/java 00601000-00602000 rw-p 00001000 08:02 15473026 /export/apps/xtools/LNKD-intellij-2019.1/jre64/bin/java 00c55000-00c97000 rw-p 00000000 00:00 0 [heap] 4069a000-4069c000 r-xs 00000000 08:02 8651109 /tmp/.glcaaqNV (deleted) 41488000-41528000 rw-p 00000000 00:00 0 5c0000000-600b49000 rw-p 00000000 00:00 0 600b49000-7c0000000 ---p 00000000 00:00 0 7c0000000-7c298f000 rw-p 00000000 00:00 0 7c298f000-800000000 ---p 00000000 00:00 0 7f0000000000-7f0800000000 rw-p 00000000 00:00 0 7f0800000000-7f1000000000 ---p 00000000 00:00 0 7f1000000000-7f1000004000 rw-p 00000000 00:00 0 7f1000004000-7f10000dc000 rw-p 00000000 00:00 0 7f10000dc000-7f1000100000 rw-p 00000000 00:00 0 7f1000100000-7f1400000000 rw-p 00000000 00:00 0 7f148f297000-7f148f387000 r-xp 00000000 08:02 11537148 /usr/lib64/libasound.so.2.0.0 7f148f387000-7f148f586000 ---p 000f0000 08:02 11537148 /usr/lib64/libasound.so.2.0.0 7f148f586000-7f148f58d000 r--p 000ef000 08:02 11537148 /usr/lib64/libasound.so.2.0.0 7f148f58d000-7f148f58f000 rw-p 000f6000 08:02 11537148 /usr/lib64/libasound.so.2.0.0 7f148f58f000-7f148f6d1000 r-xp 00000000 08:02 11017754 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libglib-lite.so 7f148f6d1000-7f148f8d1000 ---p 00142000 08:02 11017754 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libglib-lite.so 7f148f8d1000-7f148f8d2000 r--p 00142000 08:02 11017754 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libglib-lite.so 7f148f8d2000-7f148f8d6000 rw-p 00143000 08:02 11017754 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libglib-lite.so 7f148f8d6000-7f148f8d7000 rw-p 00000000 00:00 0 7f148f8d7000-7f148fa80000 r-xp 00000000 08:02 11017749 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libgstreamer-lite.so 7f148fa80000-7f148fc7f000 ---p 001a9000 08:02 11017749 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libgstreamer-lite.so 7f148fc7f000-7f148fc90000 r--p 001a8000 08:02 11017749 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libgstreamer-lite.so 7f148fc90000-7f148fc96000 rw-p 001b9000 08:02 11017749 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libgstreamer-lite.so 7f148fc96000-7f148fc98000 rw-p 00000000 00:00 0 7f148fc98000-7f148fcf8000 r-xp 00000000 08:02 11017727 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libjfxmedia.so 7f148fcf8000-7f148fef7000 ---p 00060000 08:02 11017727 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libjfxmedia.so 7f148fef7000-7f148fefa000 r--p 0005f000 08:02 11017727 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libjfxmedia.so 7f148fefa000-7f148fefc000 rw-p 00062000 08:02 11017727 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libjfxmedia.so 7f148fefc000-7f148feff000 ---p 00000000 00:00 0 7f148feff000-7f148fffd000 rw-p 00000000 00:00 0 7f148fffd000-7f1490000000 ---p 00000000 00:00 0 7f1490000000-7f14900fe000 rw-p 00000000 00:00 0 7f14900fe000-7f1490101000 ---p 00000000 00:00 0 7f1490101000-7f14901ff000 rw-p 00000000 00:00 0 7f14901ff000-7f1490202000 ---p 00000000 00:00 0 7f1490202000-7f1490300000 rw-p 00000000 00:00 0 7f1490300000-7f1490400000 rw-p 00000000 00:00 0 7f14904fd000-7f1490500000 ---p 00000000 00:00 0 7f1490500000-7f14905fe000 rw-p 00000000 00:00 0 7f14905fe000-7f1490601000 ---p 00000000 00:00 0 7f1490601000-7f14906ff000 rw-p 00000000 00:00 0 7f14906ff000-7f1490702000 ---p 00000000 00:00 0 7f1490702000-7f1490800000 rw-p 00000000 00:00 0 7f1490800000-7f1490900000 rw-p 00000000 00:00 0 7f1490a00000-7f1490b00000 rw-p 00000000 00:00 0 7f1490c00000-7f1490d00000 rw-p 00000000 00:00 0 7f1490dfe000-7f1490e01000 ---p 00000000 00:00 0 7f1490e01000-7f1490fff000 rw-p 00000000 00:00 0 7f1490fff000-7f14910ff000 ---p 00000000 00:00 0 7f14910ff000-7f1491102000 ---p 00000000 00:00 0 7f1491102000-7f1491400000 rw-p 00000000 00:00 0 7f1491400000-7f1491600000 rw-p 00000000 00:00 0 7f1491600000-7f1491800000 rw-p 00000000 00:00 0 7f1491800000-7f1491a00000 rw-p 00000000 00:00 0 7f1491a00000-7f1491c00000 rw-p 00000000 00:00 0 7f1491c00000-7f1491e00000 rw-p 00000000 00:00 0 7f1491e00000-7f1492000000 rw-p 00000000 00:00 0 7f1492000000-7f1492200000 rw-p 00000000 00:00 0 7f1492200000-7f1492400000 rw-p 00000000 00:00 0 7f1492400000-7f1492600000 rw-p 00000000 00:00 0 7f1492600000-7f1492800000 rw-p 00000000 00:00 0 7f1492800000-7f1492a00000 rw-p 00000000 00:00 0 7f1492a00000-7f1492b00000 rw-p 00000000 00:00 0 7f1492c00000-7f1492d00000 rw-p 00000000 00:00 0 7f1492e00000-7f1492f00000 rw-p 00000000 00:00 0 7f1493000000-7f1493100000 rw-p 00000000 00:00 0 7f1493200000-7f1493300000 rw-p 00000000 00:00 0 7f1493400000-7f1493500000 rw-p 00000000 00:00 0 7f1493600000-7f1493700000 rw-p 00000000 00:00 0 7f1493800000-7f1493900000 rw-p 00000000 00:00 0 7f1493a00000-7f1493b00000 rw-p 00000000 00:00 0 7f1493c00000-7f1493d00000 rw-p 00000000 00:00 0 7f1493e00000-7f1493f00000 rw-p 00000000 00:00 0 7f1494000000-7f1494100000 rw-p 00000000 00:00 0 7f1494200000-7f1494300000 rw-p 00000000 00:00 0 7f1494400000-7f1494500000 rw-p 00000000 00:00 0 7f1494600000-7f1494700000 rw-p 00000000 00:00 0 7f1494800000-7f1494900000 rw-p 00000000 00:00 0 7f1494a00000-7f1494a03000 rw-p 00000000 00:00 0 7f1494a03000-7f1494ab2000 rw-p 00000000 00:00 0 7f1494ab2000-7f1494b00000 rw-p 00000000 00:00 0 7f1494c00000-7f1494c14000 rw-p 00000000 00:00 0 7f1494c14000-7f1494d00000 rw-p 00000000 00:00 0 7f1494e00000-7f1494f00000 rw-p 00000000 00:00 0 7f1495000000-7f1495100000 rw-p 00000000 00:00 0 7f1495200000-7f1495300000 rw-p 00000000 00:00 0 7f1495400000-7f1495500000 rw-p 00000000 00:00 0 7f1495600000-7f1495700000 rw-p 00000000 00:00 0 7f1495800000-7f1495900000 rw-p 00000000 00:00 0 7f1495a00000-7f1495b00000 rw-p 00000000 00:00 0 7f1495c00000-7f1495d00000 rw-p 00000000 00:00 0 7f1495e00000-7f1495f00000 rw-p 00000000 00:00 0 7f1496000000-7f1496100000 rw-p 00000000 00:00 0 7f14961c1000-7f14963c1000 rw-p 00000000 00:00 0 7f14963c1000-7f14963c4000 ---p 00000000 00:00 0 7f14963c4000-7f14984c4000 rw-p 00000000 00:00 0 7f14984c4000-7f14984fd000 r-xp 00000000 08:02 11017764 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libjavafx_iio.so 7f14984fd000-7f14986fc000 ---p 00039000 08:02 11017764 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libjavafx_iio.so 7f14986fc000-7f14986fd000 r--p 00038000 08:02 11017764 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libjavafx_iio.so 7f14986fd000-7f14986fe000 rw-p 00039000 08:02 11017764 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libjavafx_iio.so 7f14986fe000-7f14988fe000 rw-p 00000000 00:00 0 7f14988fe000-7f1498901000 ---p 00000000 00:00 0 7f1498901000-7f14989ff000 rw-p 00000000 00:00 0 7f14989ff000-7f1498a02000 ---p 00000000 00:00 0 7f1498a02000-7f1498b00000 rw-p 00000000 00:00 0 7f1498b00000-7f1498c00000 rw-p 00000000 00:00 0 7f1498d00000-7f1498e00000 rw-p 00000000 00:00 0 7f1498f00000-7f1499000000 rw-p 00000000 00:00 0 7f1499100000-7f1499200000 rw-p 00000000 00:00 0 7f1499300000-7f1499400000 rw-p 00000000 00:00 0 7f1499500000-7f1499600000 rw-p 00000000 00:00 0 7f1499700000-7f1499800000 rw-p 00000000 00:00 0 7f1499900000-7f1499a00000 rw-p 00000000 00:00 0 7f1499b00000-7f1499c00000 rw-p 00000000 00:00 0 7f1499cfb000-7f1499efb000 rw-p 00000000 00:00 0 7f1499efb000-7f1499efe000 ---p 00000000 00:00 0 7f1499efe000-7f1499ffc000 rw-p 00000000 00:00 0 7f1499ffc000-7f1499ffd000 ---p 00000000 00:00 0 7f1499ffd000-7f149a7fd000 rw-p 00000000 00:00 0 7f149a7fd000-7f149a7fe000 ---p 00000000 00:00 0 7f149a7fe000-7f149affe000 rw-p 00000000 00:00 0 7f149affe000-7f149afff000 ---p 00000000 00:00 0 7f149afff000-7f149b7ff000 rw-p 00000000 00:00 0 7f149b7ff000-7f149b800000 ---p 00000000 00:00 0 7f149b800000-7f149c000000 rw-p 00000000 00:00 0 7f149c000000-7f149c021000 rw-p 00000000 00:00 0 7f149c021000-7f14a0000000 ---p 00000000 00:00 0 7f14a00f6000-7f14a00f9000 ---p 00000000 00:00 0 7f14a00f9000-7f14a01f7000 rw-p 00000000 00:00 0 7f14a01f7000-7f14a01fa000 ---p 00000000 00:00 0 7f14a01fa000-7f14a02f8000 rw-p 00000000 00:00 0 7f14a02f8000-7f14a02fb000 ---p 00000000 00:00 0 7f14a02fb000-7f14a05f9000 rw-p 00000000 00:00 0 7f14a05f9000-7f14a05fa000 ---p 00000000 00:00 0 7f14a05fa000-7f14a0dfa000 rw-p 00000000 00:00 0 7f14a0dfa000-7f14a0dfb000 ---p 00000000 00:00 0 7f14a0dfb000-7f14a15fb000 rw-p 00000000 00:00 0 7f14a15fb000-7f14a15fc000 ---p 00000000 00:00 0 7f14a15fc000-7f14a1dfc000 rw-p 00000000 00:00 0 7f14a1dfc000-7f14a1dff000 ---p 00000000 00:00 0 7f14a1dff000-7f14a1efd000 rw-p 00000000 00:00 0 7f14a1efd000-7f14a1f00000 ---p 00000000 00:00 0 7f14a1f00000-7f14a4000000 rw-p 00000000 00:00 0 7f14a4000000-7f14a4021000 rw-p 00000000 00:00 0 7f14a4021000-7f14a8000000 ---p 00000000 00:00 0 7f14a804e000-7f14a824e000 rw-p 00000000 00:00 0 7f14a824e000-7f14a8251000 ---p 00000000 00:00 0 7f14a8251000-7f14a834f000 rw-p 00000000 00:00 0 7f14a834f000-7f14a8352000 ---p 00000000 00:00 0 7f14a8352000-7f14a8650000 rw-p 00000000 00:00 0 7f14a8650000-7f14a8850000 rw-p 00000000 00:00 0 7f14a8875000-7f14a8878000 ---p 00000000 00:00 0 7f14a8878000-7f14a8976000 rw-p 00000000 00:00 0 7f14a8976000-7f14a8979000 ---p 00000000 00:00 0 7f14a8979000-7f14a8c77000 rw-p 00000000 00:00 0 7f14a8c77000-7f14a8c7a000 ---p 00000000 00:00 0 7f14a8c7a000-7f14aad7a000 rw-p 00000000 00:00 0 7f14aad7a000-7f14aad7d000 ---p 00000000 00:00 0 7f14aad7d000-7f14aae7b000 rw-p 00000000 00:00 0 7f14aae7b000-7f14aae7e000 ---p 00000000 00:00 0 7f14aae7e000-7f14aaf7c000 rw-p 00000000 00:00 0 7f14aaf7c000-7f14aaf7f000 ---p 00000000 00:00 0 7f14aaf7f000-7f14ab07d000 rw-p 00000000 00:00 0 7f14ab07d000-7f14ab07e000 ---p 00000000 00:00 0 7f14ab07e000-7f14ab87e000 rw-p 00000000 00:00 0 7f14ab87e000-7f14ab87f000 ---p 00000000 00:00 0 7f14ab87f000-7f14ab880000 rwxp 00000000 00:00 0 7f14ab880000-7f14eb880000 ---p 00000000 00:00 0 7f14eb880000-7f14efdce000 r-xp 00000000 08:02 11017772 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libjfxwebkit.so 7f14efdce000-7f14effb1000 r--p 0454d000 08:02 11017772 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libjfxwebkit.so 7f14effb1000-7f14effd7000 rw-p 04730000 08:02 11017772 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libjfxwebkit.so 7f14effd7000-7f14efff9000 rw-p 00000000 00:00 0 7f14efff9000-7f14efffa000 r--p 00000000 00:00 0 7f14efffa000-7f14f0000000 rw-p 00000000 00:00 0 7f14f0000000-7f14f03a5000 rw-p 00000000 00:00 0 7f14f03a5000-7f14f4000000 ---p 00000000 00:00 0 7f14f4000000-7f14f4021000 rw-p 00000000 00:00 0 7f14f4021000-7f14f8000000 ---p 00000000 00:00 0 7f14f8000000-7f14f8021000 rw-p 00000000 00:00 0 7f14f8021000-7f14fc000000 ---p 00000000 00:00 0 7f14fc0fd000-7f14fc100000 ---p 00000000 00:00 0 7f14fc100000-7f14fc1fe000 rw-p 00000000 00:00 0 7f14fc1fe000-7f14fc201000 ---p 00000000 00:00 0 7f14fc201000-7f14fc4ff000 rw-p 00000000 00:00 0 7f14fc4ff000-7f14fc502000 ---p 00000000 00:00 0 7f14fc502000-7f14fc600000 rw-p 00000000 00:00 0 7f14fc600000-7f14fc700000 rw-p 00000000 00:00 0 7f14fc7f0000-7f14fc7f3000 ---p 00000000 00:00 0 7f14fc7f3000-7f14fc8f1000 rw-p 00000000 00:00 0 7f14fc8f1000-7f14fc8f5000 r-xp 00000000 08:02 11017748 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libjavafx_font_pango.so 7f14fc8f5000-7f14fcaf4000 ---p 00004000 08:02 11017748 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libjavafx_font_pango.so 7f14fcaf4000-7f14fcaf5000 r--p 00003000 08:02 11017748 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libjavafx_font_pango.so 7f14fcaf5000-7f14fcaf6000 rw-p 00004000 08:02 11017748 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libjavafx_font_pango.so 7f14fcaf6000-7f14fcafb000 r-xp 00000000 08:02 11017705 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libjavafx_font_freetype.so 7f14fcafb000-7f14fccfa000 ---p 00005000 08:02 11017705 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libjavafx_font_freetype.so 7f14fccfa000-7f14fccfb000 r--p 00004000 08:02 11017705 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libjavafx_font_freetype.so 7f14fccfb000-7f14fccfc000 rw-p 00005000 08:02 11017705 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libjavafx_font_freetype.so 7f14fccfc000-7f14fccff000 r-xp 00000000 08:02 11017730 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libjavafx_font.so 7f14fccff000-7f14fcefe000 ---p 00003000 08:02 11017730 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libjavafx_font.so 7f14fcefe000-7f14fceff000 r--p 00002000 08:02 11017730 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libjavafx_font.so 7f14fceff000-7f14fcf00000 rw-p 00003000 08:02 11017730 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libjavafx_font.so 7f14fcf00000-7f14fd000000 rw-p 00000000 00:00 0 7f14fd100000-7f14fd200000 rw-p 00000000 00:00 0 7f14fd300000-7f14fd400000 rw-p 00000000 00:00 0 7f14fd500000-7f14fd600000 rw-p 00000000 00:00 0 7f14fd700000-7f14fd800000 rw-p 00000000 00:00 0 7f14fd900000-7f14fda00000 rw-p 00000000 00:00 0 7f14fdb00000-7f14fdb08000 rw-p 00000000 00:00 0 7f14fdb08000-7f14fdbe8000 rw-p 00000000 00:00 0 7f14fdbe8000-7f14fdc00000 rw-p 00000000 00:00 0 7f14fdd00000-7f14fdd04000 rw-p 00000000 00:00 0 7f14fdd04000-7f14fdd38000 rw-p 00000000 00:00 0 7f14fdd38000-7f14fde00000 rw-p 00000000 00:00 0 7f14fdf00000-7f14fdf04000 rw-p 00000000 00:00 0 7f14fdf04000-7f14fdfe8000 rw-p 00000000 00:00 0 7f14fdfe8000-7f14fe000000 rw-p 00000000 00:00 0 7f14fe050000-7f14fe100000 r--p 00000000 08:02 12062562 /usr/share/fonts/dejavu/DejaVuSans.ttf 7f14fe100000-7f14fe105000 rw-p 00000000 00:00 0 7f14fe105000-7f14fe1e6000 rw-p 00000000 00:00 0 7f14fe1e6000-7f14fe200000 rw-p 00000000 00:00 0 7f14fe200000-7f14fe300000 rw-s 61caaa000 00:05 29980 /dev/nvidiactl 7f14fe300000-7f14fe331000 rw-p 00000000 00:00 0 7f14fe331000-7f14fe400000 rw-p 00000000 00:00 0 7f14fe45f000-7f14fe477000 r--p 00000000 08:02 26480518 /etc/ld.so.cache 7f14fe477000-7f14fe492000 r--s 0019e000 08:02 8651031 /home/broberts/.gradle/caches/modules-2/files-2.1/org.eclipse.jetty.aggregate/jetty-all/8.1.5.v20120716/fc42a0bbf4aa0104d6f15f8ae4ba877024cbba68/jetty-all-8.1.5.v20120716.jar 7f14fe492000-7f14fe4ad000 r--p 00000000 08:02 11803682 /usr/share/fonts/liberation/LiberationMono-Regular.ttf 7f14fe4ad000-7f14fe4c7000 r--p 00000000 08:02 11803679 /usr/share/fonts/liberation/LiberationMono-Bold.ttf 7f14fe4c7000-7f14fe4ca000 ---p 00000000 00:00 0 7f14fe4ca000-7f14fe500000 rw-p 00000000 00:00 0 7f14fe500000-7f14fe503000 rw-p 00000000 00:00 0 7f14fe503000-7f14fe5de000 rw-p 00000000 00:00 0 7f14fe5de000-7f14fe600000 rw-p 00000000 00:00 0 7f14fe60c000-7f14fe622000 rw-p 00000000 00:00 0 7f14fe638000-7f14fe655000 r--p 00000000 08:02 11803680 /usr/share/fonts/liberation/LiberationMono-BoldItalic.ttf 7f14fe655000-7f14fe700000 r--p 00000000 08:02 11017643 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/fonts/LucidaSansRegular.ttf 7f14fe700000-7f14fe800000 rw-p 00000000 00:00 0 7f14fe808000-7f14fe861000 r--p 00000000 08:02 12062553 /usr/share/fonts/dejavu/DejaVuSerif.ttf 7f14fe861000-7f14fe875000 r--p 00000000 08:02 11017646 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/fonts/LucidaBrightItalic.ttf 7f14fe875000-7f14fe888000 r--p 00000000 08:02 11017645 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/fonts/LucidaBrightDemiBold.ttf 7f14fe888000-7f14fe8d6000 r--p 00000000 08:02 11017642 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/fonts/LucidaSansDemiBold.ttf 7f14fe8d6000-7f14fe8d7000 ---p 00000000 00:00 0 7f14fe8d7000-7f14ff2d7000 rw-p 00000000 00:00 0 7f14ff2d7000-7f14ff4d7000 rw-p 00000000 00:00 0 7f14ff4df000-7f14ff584000 r--p 00000000 08:02 12062558 /usr/share/fonts/dejavu/DejaVuSans-Bold.ttf 7f14ff584000-7f14ff594000 r--s 0010e000 08:02 8651032 /home/broberts/.gradle/caches/modules-2/files-2.1/org.eclipse.jetty.aggregate/jetty-all/8.1.5.v20120716/3a54d4e1989e5a82bf5a7ecb99f52b9c4c683e6/jetty-all-8.1.5.v20120716-sources.jar 7f14ff594000-7f14ff5a0000 r--s 0006f000 08:02 8651399 /home/broberts/.gradle/caches/modules-2/files-2.1/org.springframework/spring-test/4.1.1.RELEASE/406ce9c05253f7dd75ac3f31170c71cca7419d8a/spring-test-4.1.1.RELEASE.jar 7f14ff5a0000-7f14ff5af000 r--s 0007c000 08:02 8650938 /home/broberts/.gradle/caches/modules-2/files-2.1/joda-time/joda-time/2.0/752c0fe8a5b2d6704c9d9d6f06d9abdcacf4045d/joda-time-2.0.jar 7f14ff5af000-7f14ff5b2000 ---p 00000000 00:00 0 7f14ff5b2000-7f14ff6b0000 rw-p 00000000 00:00 0 7f14ff6b0000-7f14ff6b3000 ---p 00000000 00:00 0 7f14ff6b3000-7f14ff7b1000 rw-p 00000000 00:00 0 7f14ff7b1000-7f14ff7b4000 ---p 00000000 00:00 0 7f14ff7b4000-7f14ff8b2000 rw-p 00000000 00:00 0 7f14ff8b2000-7f14ff8f5000 r-xp 00000000 08:02 11017744 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libglassgtk2.so 7f14ff8f5000-7f14ffaf5000 ---p 00043000 08:02 11017744 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libglassgtk2.so 7f14ffaf5000-7f14ffaf7000 r--p 00043000 08:02 11017744 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libglassgtk2.so 7f14ffaf7000-7f14ffaf8000 rw-p 00045000 08:02 11017744 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libglassgtk2.so 7f14ffaf8000-7f14ffaf9000 rw-p 00000000 00:00 0 7f14ffaf9000-7f14ffafa000 r-xp 00000000 08:02 11017716 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libglass.so 7f14ffafa000-7f14ffcfa000 ---p 00001000 08:02 11017716 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libglass.so 7f14ffcfa000-7f14ffcfb000 r--p 00001000 08:02 11017716 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libglass.so 7f14ffcfb000-7f14ffcfc000 rw-p 00002000 08:02 11017716 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libglass.so 7f14ffcfc000-7f14ffd7c000 rw-s 81bf2b000 00:05 29980 /dev/nvidiactl 7f14ffd7c000-7f14ffdfc000 rw-s 819b34000 00:05 29980 /dev/nvidiactl 7f14ffdfc000-7f14ffefc000 rw-s ebfbae000 00:05 29980 /dev/nvidiactl 7f14ffefc000-7f1500000000 rw-s fc4200000 00:05 29980 /dev/nvidiactl 7f1500000000-7f1500021000 rw-p 00000000 00:00 0 7f1500021000-7f1504000000 ---p 00000000 00:00 0 7f1504000000-7f1504021000 rw-p 00000000 00:00 0 7f1504021000-7f1508000000 ---p 00000000 00:00 0 7f1508000000-7f1508021000 rw-p 00000000 00:00 0 7f1508021000-7f150c000000 ---p 00000000 00:00 0 7f150c000000-7f150c061000 rw-p 00000000 00:00 0 7f150c061000-7f1510000000 ---p 00000000 00:00 0 7f1510000000-7f1510021000 rw-p 00000000 00:00 0 7f1510021000-7f1514000000 ---p 00000000 00:00 0 7f1514000000-7f1514021000 rw-p 00000000 00:00 0 7f1514021000-7f1518000000 ---p 00000000 00:00 0 7f1518000000-7f1518021000 rw-p 00000000 00:00 0 7f1518021000-7f151c000000 ---p 00000000 00:00 0 7f151c005000-7f151c018000 r--p 00000000 08:02 11017644 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/fonts/LucidaBrightDemiItalic.ttf 7f151c018000-7f151c052000 r--p 00000000 08:02 11017640 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/fonts/LucidaTypewriterBold.ttf 7f151c052000-7f151c0d2000 rw-s 856fd3000 00:05 29980 /dev/nvidiactl 7f151c0d2000-7f151d4b5000 r-xp 00000000 08:02 11534924 /usr/lib64/libnvidia-glcore.so.375.26 7f151d4b5000-7f151d4d5000 rwxp 013e3000 08:02 11534924 /usr/lib64/libnvidia-glcore.so.375.26 7f151d4d5000-7f151d8a5000 r-xp 01403000 08:02 11534924 /usr/lib64/libnvidia-glcore.so.375.26 7f151d8a5000-7f151daa5000 ---p 017d3000 08:02 11534924 /usr/lib64/libnvidia-glcore.so.375.26 7f151daa5000-7f151de8c000 rw-p 017d3000 08:02 11534924 /usr/lib64/libnvidia-glcore.so.375.26 7f151de8c000-7f151dea4000 rw-p 00000000 00:00 0 7f151dea4000-7f151dea7000 r-xp 00000000 08:02 11534937 /usr/lib64/tls/libnvidia-tls.so.375.26 7f151dea7000-7f151e0a7000 ---p 00003000 08:02 11534937 /usr/lib64/tls/libnvidia-tls.so.375.26 7f151e0a7000-7f151e0a8000 rw-p 00003000 08:02 11534937 /usr/lib64/tls/libnvidia-tls.so.375.26 7f151e0a8000-7f151e171000 r-xp 00000000 08:02 11534939 /usr/lib64/libGLX_nvidia.so.375.26 7f151e171000-7f151e1a5000 rwxp 000c9000 08:02 11534939 /usr/lib64/libGLX_nvidia.so.375.26 7f151e1a5000-7f151e1b9000 r-xp 000fd000 08:02 11534939 /usr/lib64/libGLX_nvidia.so.375.26 7f151e1b9000-7f151e3b8000 ---p 00111000 08:02 11534939 /usr/lib64/libGLX_nvidia.so.375.26 7f151e3b8000-7f151e3e0000 rw-p 00110000 08:02 11534939 /usr/lib64/libGLX_nvidia.so.375.26 7f151e3e0000-7f151e3e7000 rw-p 00000000 00:00 0 7f151e3e7000-7f151e3ec000 r-xp 00000000 08:02 11537775 /usr/lib64/libXxf86vm.so.1.0.0 7f151e3ec000-7f151e5eb000 ---p 00005000 08:02 11537775 /usr/lib64/libXxf86vm.so.1.0.0 7f151e5eb000-7f151e5ec000 r--p 00004000 08:02 11537775 /usr/lib64/libXxf86vm.so.1.0.0 7f151e5ec000-7f151e5ed000 rw-p 00005000 08:02 11537775 /usr/lib64/libXxf86vm.so.1.0.0 7f151e5ed000-7f151e5f9000 r-xp 00000000 08:02 11017774 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libprism_es2.so 7f151e5f9000-7f151e7f8000 ---p 0000c000 08:02 11017774 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libprism_es2.so 7f151e7f8000-7f151e7f9000 r--p 0000b000 08:02 11017774 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libprism_es2.so 7f151e7f9000-7f151e7fa000 rw-p 0000c000 08:02 11017774 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libprism_es2.so 7f151e7fa000-7f151e9fa000 rw-p 00000000 00:00 0 7f151e9fa000-7f151ebfa000 rw-p 00000000 00:00 0 7f151ebfa000-7f151ebfd000 ---p 00000000 00:00 0 7f151ebfd000-7f151eefb000 rw-p 00000000 00:00 0 7f151eefb000-7f151f0fb000 rw-p 00000000 00:00 0 7f151f0fb000-7f151f2fb000 rw-p 00000000 00:00 0 7f151f2fb000-7f151f2fe000 ---p 00000000 00:00 0 7f151f2fe000-7f151f3fc000 rw-p 00000000 00:00 0 7f151f3fc000-7f151f3ff000 ---p 00000000 00:00 0 7f151f3ff000-7f151f4fd000 rw-p 00000000 00:00 0 7f151f4fd000-7f151f500000 ---p 00000000 00:00 0 7f151f500000-7f151f7fe000 rw-p 00000000 00:00 0 7f151f7fe000-7f151f801000 ---p 00000000 00:00 0 7f151f801000-7f151f8ff000 rw-p 00000000 00:00 0 7f151f8ff000-7f151f902000 ---p 00000000 00:00 0 7f151f902000-7f151fc00000 rw-p 00000000 00:00 0 7f151fc00000-7f151fe00000 rw-p 00000000 00:00 0 7f151fe00000-7f1520000000 rw-p 00000000 00:00 0 7f1520000000-7f1520021000 rw-p 00000000 00:00 0 7f1520021000-7f1524000000 ---p 00000000 00:00 0 7f1524000000-7f1524021000 rw-p 00000000 00:00 0 7f1524021000-7f1528000000 ---p 00000000 00:00 0 7f1528000000-7f15294e6000 rw-p 00000000 00:00 0 7f15294e6000-7f152c000000 ---p 00000000 00:00 0 7f152c000000-7f152c023000 rw-p 00000000 00:00 0 7f152c023000-7f1530000000 ---p 00000000 00:00 0 7f1530000000-7f1530021000 rw-p 00000000 00:00 0 7f1530021000-7f1534000000 ---p 00000000 00:00 0 7f1534000000-7f153403c000 rw-p 00000000 00:00 0 7f153403c000-7f1538000000 ---p 00000000 00:00 0 7f1538000000-7f1538021000 rw-p 00000000 00:00 0 7f1538021000-7f153c000000 ---p 00000000 00:00 0 7f153c000000-7f153c04d000 rw-p 00000000 00:00 0 7f153c04d000-7f1540000000 ---p 00000000 00:00 0 7f1540000000-7f1540021000 rw-p 00000000 00:00 0 7f1540021000-7f1544000000 ---p 00000000 00:00 0 7f1544000000-7f1544021000 rw-p 00000000 00:00 0 7f1544021000-7f1548000000 ---p 00000000 00:00 0 7f1548000000-7f154802a000 rw-p 00000000 00:00 0 7f154802a000-7f154c000000 ---p 00000000 00:00 0 7f154c000000-7f154c021000 rw-p 00000000 00:00 0 7f154c021000-7f1550000000 ---p 00000000 00:00 0 7f1550000000-7f15502f8000 rw-p 00000000 00:00 0 7f15502f8000-7f1554000000 ---p 00000000 00:00 0 7f1554000000-7f1554063000 rw-p 00000000 00:00 0 7f1554063000-7f1558000000 ---p 00000000 00:00 0 7f1558000000-7f1558021000 rw-p 00000000 00:00 0 7f1558021000-7f155c000000 ---p 00000000 00:00 0 7f155c000000-7f155c626000 rw-p 00000000 00:00 0 7f155c626000-7f1560000000 ---p 00000000 00:00 0 7f1560000000-7f1560022000 rw-p 00000000 00:00 0 7f1560022000-7f1564000000 ---p 00000000 00:00 0 7f1564000000-7f1564021000 rw-p 00000000 00:00 0 7f1564021000-7f1568000000 ---p 00000000 00:00 0 7f1568000000-7f1568022000 rw-p 00000000 00:00 0 7f1568022000-7f156c000000 ---p 00000000 00:00 0 7f156c002000-7f156c00d000 rw-p 00000000 00:00 0 7f156c00d000-7f156c08d000 rw-s 8177e1000 00:05 29980 /dev/nvidiactl 7f156c08d000-7f156c0ad000 rw-s e02e0000 00:05 20200 /dev/nvidia0 7f156c0ad000-7f156c0ed000 rw-s 8643b5000 00:05 29980 /dev/nvidiactl 7f156c0ed000-7f156c0f0000 ---p 00000000 00:00 0 7f156c0f0000-7f156c3ee000 rw-p 00000000 00:00 0 7f156c3ee000-7f156c5ee000 rw-p 00000000 00:00 0 7f156c5ee000-7f156c7ee000 rw-p 00000000 00:00 0 7f156c7ee000-7f156c9ee000 rw-p 00000000 00:00 0 7f156c9ee000-7f156cbee000 rw-p 00000000 00:00 0 7f156cbee000-7f156cdee000 rw-p 00000000 00:00 0 7f156cdee000-7f156cdf1000 ---p 00000000 00:00 0 7f156cdf1000-7f156d0ef000 rw-p 00000000 00:00 0 7f156d0ef000-7f156d2ef000 rw-p 00000000 00:00 0 7f156d2ef000-7f156d2f2000 ---p 00000000 00:00 0 7f156d2f2000-7f156d3f0000 rw-p 00000000 00:00 0 7f156d3f0000-7f156d3f3000 ---p 00000000 00:00 0 7f156d3f3000-7f156d4f1000 rw-p 00000000 00:00 0 7f156d4f1000-7f156d4f4000 ---p 00000000 00:00 0 7f156d4f4000-7f156d5f2000 rw-p 00000000 00:00 0 7f156d5f2000-7f156d5f5000 ---p 00000000 00:00 0 7f156d5f5000-7f156d6f3000 rw-p 00000000 00:00 0 7f156d6f3000-7f156d6f6000 ---p 00000000 00:00 0 7f156d6f6000-7f156d7f4000 rw-p 00000000 00:00 0 7f156d7f4000-7f156d7f7000 ---p 00000000 00:00 0 7f156d7f7000-7f156d8f5000 rw-p 00000000 00:00 0 7f156d8f5000-7f156d8f8000 ---p 00000000 00:00 0 7f156d8f8000-7f156d9f6000 rw-p 00000000 00:00 0 7f156d9f6000-7f156d9f9000 ---p 00000000 00:00 0 7f156d9f9000-7f156daf7000 rw-p 00000000 00:00 0 7f156daf7000-7f156dafa000 ---p 00000000 00:00 0 7f156dafa000-7f156ddf8000 rw-p 00000000 00:00 0 7f156ddf8000-7f156dff8000 rw-p 00000000 00:00 0 7f156dff8000-7f156e1f8000 rw-p 00000000 00:00 0 7f156e1f8000-7f156e3f8000 rw-p 00000000 00:00 0 7f156e3f8000-7f156e5f1000 rw-p 00000000 00:00 0 7f156e5f1000-7f156e5f8000 ---p 00000000 00:00 0 7f156e5f8000-7f156e7ea000 rw-p 00000000 00:00 0 7f156e7ea000-7f156e7f8000 ---p 00000000 00:00 0 7f156e7f8000-7f156e9f1000 rw-p 00000000 00:00 0 7f156e9f1000-7f156e9f8000 ---p 00000000 00:00 0 7f156e9f8000-7f156e9fb000 ---p 00000000 00:00 0 7f156e9fb000-7f156eaf9000 rw-p 00000000 00:00 0 7f156eaf9000-7f156eafc000 ---p 00000000 00:00 0 7f156eafc000-7f156ebfa000 rw-p 00000000 00:00 0 7f156ebfa000-7f156ebfd000 ---p 00000000 00:00 0 7f156ebfd000-7f156ecfb000 rw-p 00000000 00:00 0 7f156ecfb000-7f156ecfe000 ---p 00000000 00:00 0 7f156ecfe000-7f156edfc000 rw-p 00000000 00:00 0 7f156edfc000-7f156edff000 ---p 00000000 00:00 0 7f156edff000-7f156eefd000 rw-p 00000000 00:00 0 7f156eefd000-7f156ef00000 ---p 00000000 00:00 0 7f156ef00000-7f156effe000 rw-p 00000000 00:00 0 7f156effe000-7f156efff000 ---p 00000000 00:00 0 7f156efff000-7f156f7ff000 rw-p 00000000 00:00 0 7f156f7ff000-7f156f800000 ---p 00000000 00:00 0 7f156f800000-7f1570000000 rw-p 00000000 00:00 0 7f1570000000-7f1570021000 rw-p 00000000 00:00 0 7f1570021000-7f1574000000 ---p 00000000 00:00 0 7f1574000000-7f1574021000 rw-p 00000000 00:00 0 7f1574021000-7f1578000000 ---p 00000000 00:00 0 7f1578000000-7f1578021000 rw-p 00000000 00:00 0 7f1578021000-7f157c000000 ---p 00000000 00:00 0 7f157c000000-7f157c091000 rw-p 00000000 00:00 0 7f157c091000-7f1580000000 ---p 00000000 00:00 0 7f1580000000-7f1580045000 rw-p 00000000 00:00 0 7f1580045000-7f1584000000 ---p 00000000 00:00 0 7f1584001000-7f1584021000 rw-s 80a629000 00:05 29980 /dev/nvidiactl 7f1584021000-7f158421a000 rw-p 00000000 00:00 0 7f158421a000-7f1584221000 ---p 00000000 00:00 0 7f1584221000-7f1584224000 ---p 00000000 00:00 0 7f1584224000-7f158451a000 rw-p 00000000 00:00 0 7f158451a000-7f1584522000 ---p 00000000 00:00 0 7f1584522000-7f1584722000 rw-p 00000000 00:00 0 7f1584722000-7f1584723000 ---p 00000000 00:00 0 7f1584723000-7f1584f23000 rw-p 00000000 00:00 0 7f1584f23000-7f1584f27000 r-xp 00000000 08:02 11535252 /usr/lib64/libgpg-error.so.0.10.0 7f1584f27000-7f1585126000 ---p 00004000 08:02 11535252 /usr/lib64/libgpg-error.so.0.10.0 7f1585126000-7f1585127000 r--p 00003000 08:02 11535252 /usr/lib64/libgpg-error.so.0.10.0 7f1585127000-7f1585128000 rw-p 00004000 08:02 11535252 /usr/lib64/libgpg-error.so.0.10.0 7f1585128000-7f15851a4000 r-xp 00000000 08:02 11535260 /usr/lib64/libgcrypt.so.11.8.2 7f15851a4000-7f15853a4000 ---p 0007c000 08:02 11535260 /usr/lib64/libgcrypt.so.11.8.2 7f15853a4000-7f15853a5000 r--p 0007c000 08:02 11535260 /usr/lib64/libgcrypt.so.11.8.2 7f15853a5000-7f15853a8000 rw-p 0007d000 08:02 11535260 /usr/lib64/libgcrypt.so.11.8.2 7f15853a8000-7f15853a9000 rw-p 00000000 00:00 0 7f15853a9000-7f15853f7000 r-xp 00000000 08:02 11535544 /usr/lib64/libsecret-1.so.0.0.0 7f15853f7000-7f15855f7000 ---p 0004e000 08:02 11535544 /usr/lib64/libsecret-1.so.0.0.0 7f15855f7000-7f15855fa000 r--p 0004e000 08:02 11535544 /usr/lib64/libsecret-1.so.0.0.0 7f15855fa000-7f15855fb000 rw-p 00051000 08:02 11535544 /usr/lib64/libsecret-1.so.0.0.0 7f15855fb000-7f15857f9000 rw-p 00000000 00:00 0 7f15857f9000-7f15857fc000 ---p 00000000 00:00 0 7f15857fc000-7f15857ff000 ---p 00000000 00:00 0 7f15857ff000-7f15858fd000 rw-p 00000000 00:00 0 7f15858fd000-7f1585900000 ---p 00000000 00:00 0 7f1585900000-7f1585bfe000 rw-p 00000000 00:00 0 7f1585bfe000-7f1585dfe000 rw-p 00000000 00:00 0 7f1585dfe000-7f1585ff7000 rw-p 00000000 00:00 0 7f1585ff7000-7f1585ffe000 ---p 00000000 00:00 0 7f1585ffe000-7f15861fb000 rw-p 00000000 00:00 0 7f15861fb000-7f15861fe000 ---p 00000000 00:00 0 7f15861fe000-7f15863fe000 rw-p 00000000 00:00 0 7f15863fe000-7f15865fe000 rw-p 00000000 00:00 0 7f15865fe000-7f15867f7000 rw-p 00000000 00:00 0 7f15867f7000-7f15867fe000 ---p 00000000 00:00 0 7f15867fe000-7f15869fe000 rw-p 00000000 00:00 0 7f15869fe000-7f1586bfe000 rw-p 00000000 00:00 0 7f1586bfe000-7f1586dfd000 rw-p 00000000 00:00 0 7f1586dfd000-7f1586dfe000 ---p 00000000 00:00 0 7f1586dfe000-7f1586ffd000 rw-p 00000000 00:00 0 7f1586ffd000-7f1586ffe000 ---p 00000000 00:00 0 7f1586ffe000-7f15871f5000 rw-p 00000000 00:00 0 7f15871f5000-7f15871fe000 ---p 00000000 00:00 0 7f15871fe000-7f15873fe000 rw-p 00000000 00:00 0 7f15873fe000-7f15875fe000 rw-p 00000000 00:00 0 7f15875fe000-7f1587601000 ---p 00000000 00:00 0 7f1587601000-7f15878ff000 rw-p 00000000 00:00 0 7f15878ff000-7f1587afe000 rw-p 00000000 00:00 0 7f1587afe000-7f1587aff000 ---p 00000000 00:00 0 7f1587aff000-7f1587cff000 rw-p 00000000 00:00 0 7f1587cff000-7f1587d02000 ---p 00000000 00:00 0 7f1587d02000-7f1587ffa000 rw-p 00000000 00:00 0 7f1587ffa000-7f1588000000 ---p 00000000 00:00 0 7f1588000000-7f1588021000 rw-p 00000000 00:00 0 7f1588021000-7f158c000000 ---p 00000000 00:00 0 7f158c000000-7f158c021000 rw-p 00000000 00:00 0 7f158c021000-7f1590000000 ---p 00000000 00:00 0 7f1590000000-7f1590021000 rw-p 00000000 00:00 0 7f1590021000-7f1594000000 ---p 00000000 00:00 0 7f1594000000-7f159405a000 rw-p 00000000 00:00 0 7f159405a000-7f1598000000 ---p 00000000 00:00 0 7f1598000000-7f1598021000 rw-p 00000000 00:00 0 7f1598021000-7f159c000000 ---p 00000000 00:00 0 7f159c005000-7f159c045000 rw-s e9b6d1000 00:05 29980 /dev/nvidiactl 7f159c045000-7f159c065000 rw-s 845a8b000 00:05 29980 /dev/nvidiactl 7f159c069000-7f159c0be000 r--p 00000000 08:02 11017639 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/fonts/LucidaBrightRegular.ttf 7f159c0be000-7f159c0fa000 r--p 00000000 08:02 11017638 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/fonts/LucidaTypewriterRegular.ttf 7f159c0fa000-7f159c0fd000 ---p 00000000 00:00 0 7f159c0fd000-7f159c3fb000 rw-p 00000000 00:00 0 7f159c3fb000-7f159d3fc000 rw-p 00000000 00:00 0 7f159d3fc000-7f159d3ff000 ---p 00000000 00:00 0 7f159d3ff000-7f159d6fd000 rw-p 00000000 00:00 0 7f159d6fd000-7f159d8fd000 rw-p 00000000 00:00 0 7f159d8fd000-7f159d900000 ---p 00000000 00:00 0 7f159d900000-7f159dbfe000 rw-p 00000000 00:00 0 7f159dbfe000-7f159dc01000 ---p 00000000 00:00 0 7f159dc01000-7f159deff000 rw-p 00000000 00:00 0 7f159deff000-7f159e0ff000 rw-p 00000000 00:00 0 7f159e0ff000-7f159e2f8000 rw-p 00000000 00:00 0 7f159e2f8000-7f159e2ff000 ---p 00000000 00:00 0 7f159e2ff000-7f159e4fe000 rw-p 00000000 00:00 0 7f159e4fe000-7f159e4ff000 ---p 00000000 00:00 0 7f159e4ff000-7f159e6fe000 rw-p 00000000 00:00 0 7f159e6fe000-7f159e6ff000 ---p 00000000 00:00 0 7f159e6ff000-7f159e8fe000 rw-p 00000000 00:00 0 7f159e8fe000-7f159e8ff000 ---p 00000000 00:00 0 7f159e8ff000-7f159eafe000 rw-p 00000000 00:00 0 7f159eafe000-7f159eaff000 ---p 00000000 00:00 0 7f159eaff000-7f159ecff000 rw-p 00000000 00:00 0 7f159ecff000-7f159eeff000 rw-p 00000000 00:00 0 7f159eeff000-7f159f0ff000 rw-p 00000000 00:00 0 7f159f0ff000-7f159f102000 ---p 00000000 00:00 0 7f159f102000-7f159f400000 rw-p 00000000 00:00 0 7f159f400000-7f159f600000 rw-p 00000000 00:00 0 7f159f600000-7f159f800000 rw-p 00000000 00:00 0 7f159f800000-7f159fa00000 rw-p 00000000 00:00 0 7f159fa00000-7f159fc00000 rw-p 00000000 00:00 0 7f159fc00000-7f159fdff000 rw-p 00000000 00:00 0 7f159fdff000-7f159fe00000 ---p 00000000 00:00 0 7f159fe00000-7f159fff9000 rw-p 00000000 00:00 0 7f159fff9000-7f15a0000000 ---p 00000000 00:00 0 7f15a0000000-7f15a0034000 rw-p 00000000 00:00 0 7f15a0034000-7f15a4000000 ---p 00000000 00:00 0 7f15a4000000-7f15a4021000 rw-p 00000000 00:00 0 7f15a4021000-7f15a8000000 ---p 00000000 00:00 0 7f15a8000000-7f15a8021000 rw-p 00000000 00:00 0 7f15a8021000-7f15ac000000 ---p 00000000 00:00 0 7f15ac000000-7f15ac021000 rw-p 00000000 00:00 0 7f15ac021000-7f15b0000000 ---p 00000000 00:00 0 7f15b0000000-7f15b0021000 rw-p 00000000 00:00 0 7f15b0021000-7f15b4000000 ---p 00000000 00:00 0 7f15b4000000-7f15b7ac0000 rw-p 00000000 00:00 0 7f15b7ac0000-7f15b8000000 ---p 00000000 00:00 0 7f15b8001000-7f15b8038000 rw-p 00000000 00:00 0 7f15b8038000-7f15b8046000 rw-s 00000000 00:04 4292614 /SYSV00000000 (deleted) 7f15b8046000-7f15b8047000 r--s 00003000 08:02 12068901 /export/apps/xtools/LNKD-intellij-2019.1/plugins/vaadin/lib/resources_en.jar 7f15b8047000-7f15b8049000 r--s 00020000 08:02 12068904 /export/apps/xtools/LNKD-intellij-2019.1/plugins/vaadin/lib/vaadin.jar 7f15b8049000-7f15b804d000 r--s 00048000 08:02 11413971 /export/apps/xtools/LNKD-intellij-2019.1/plugins/cloudFoundryIntegration/lib/cloudFoundryIntegration.jar 7f15b804d000-7f15b804e000 r--s 00000000 08:02 11414226 /export/apps/xtools/LNKD-intellij-2019.1/plugins/maven-ext/lib/resources_en.jar 7f15b804e000-7f15b8050000 r--s 00049000 08:02 11414225 /export/apps/xtools/LNKD-intellij-2019.1/plugins/maven-ext/lib/maven-ext.jar 7f15b8050000-7f15b8052000 r--s 00014000 08:02 11413998 /export/apps/xtools/LNKD-intellij-2019.1/plugins/cucumber-groovy/lib/cucumber-groovy.jar 7f15b8052000-7f15b8054000 r--s 0000d000 08:02 11413997 /export/apps/xtools/LNKD-intellij-2019.1/plugins/cucumber-groovy/lib/cucumber-groovy-1.2.4.jar 7f15b8054000-7f15b8055000 r--s 00001000 08:02 9853764 /export/apps/xtools/LNKD-intellij-2019.1/plugins/AppServersView/lib/resources_en.jar 7f15b8055000-7f15b8057000 r--s 0002e000 08:02 9853763 /export/apps/xtools/LNKD-intellij-2019.1/plugins/AppServersView/lib/AppServersView.jar 7f15b8057000-7f15b8058000 r--s 00000000 08:02 9971984 /export/apps/xtools/LNKD-intellij-2019.1/plugins/JavaeeExtensions/lib/resources_en.jar 7f15b8058000-7f15b8059000 r--s 00008000 08:02 9971983 /export/apps/xtools/LNKD-intellij-2019.1/plugins/JavaeeExtensions/lib/javaee-extensions.jar 7f15b8059000-7f15b805b000 r--s 0001b000 08:02 11413966 /export/apps/xtools/LNKD-intellij-2019.1/plugins/cloudBeesIntegration/lib/cloudBeesIntegration.jar 7f15b805b000-7f15b805c000 r--s 00001000 08:02 11414406 /export/apps/xtools/LNKD-intellij-2019.1/plugins/resinIntegration/lib/resources_en.jar 7f15b805c000-7f15b8060000 r--s 0004b000 08:02 11414405 /export/apps/xtools/LNKD-intellij-2019.1/plugins/resinIntegration/lib/resin.jar 7f15b8060000-7f15b8061000 r--s 00000000 08:02 11414205 /export/apps/xtools/LNKD-intellij-2019.1/plugins/jsr45debug/lib/resources_en.jar 7f15b8061000-7f15b8063000 r--s 00008000 08:02 11414204 /export/apps/xtools/LNKD-intellij-2019.1/plugins/jsr45debug/lib/jsr45debug.jar 7f15b8063000-7f15b8064000 r--s 00004000 08:02 11414040 /export/apps/xtools/LNKD-intellij-2019.1/plugins/emma/lib/emma-agent.jar 7f15b8064000-7f15b8065000 r--s 00002000 08:02 11414041 /export/apps/xtools/LNKD-intellij-2019.1/plugins/emma/lib/emma-idea.jar 7f15b8065000-7f15b806e000 r--s 0006b000 08:02 11414042 /export/apps/xtools/LNKD-intellij-2019.1/plugins/emma/lib/emma.jar 7f15b806e000-7f15b8070000 r--s 00000000 08:02 11414398 /export/apps/xtools/LNKD-intellij-2019.1/plugins/reactor/lib/resources_en.jar 7f15b8070000-7f15b8072000 r--s 0000c000 08:02 11414397 /export/apps/xtools/LNKD-intellij-2019.1/plugins/reactor/lib/reactor.jar 7f15b8072000-7f15b8073000 r--s 00000000 08:02 12068907 /export/apps/xtools/LNKD-intellij-2019.1/plugins/w3validators/lib/resources_en.jar 7f15b8073000-7f15b8075000 r--s 0000c000 08:02 12068910 /export/apps/xtools/LNKD-intellij-2019.1/plugins/w3validators/lib/w3validators.jar 7f15b8075000-7f15b809b000 r--s 00276000 08:02 12068909 /export/apps/xtools/LNKD-intellij-2019.1/plugins/w3validators/lib/w3-css-validator.jar 7f15b809b000-7f15b809d000 r--s 00015000 08:02 12068908 /export/apps/xtools/LNKD-intellij-2019.1/plugins/w3validators/lib/tagsoup-1.2.1.jar 7f15b809d000-7f15b809e000 r--s 00000000 08:02 12068954 /export/apps/xtools/LNKD-intellij-2019.1/plugins/zkm/lib/resources_en.jar 7f15b809e000-7f15b80a1000 r--s 00027000 08:02 12068955 /export/apps/xtools/LNKD-intellij-2019.1/plugins/zkm/lib/zkm.jar 7f15b80a1000-7f15b80a3000 r--s 00030000 08:02 12068947 /export/apps/xtools/LNKD-intellij-2019.1/plugins/xslt-debugger/lib/xslt-debugger.jar 7f15b80a3000-7f15b80a5000 r--s 00006000 08:02 12068939 /export/apps/xtools/LNKD-intellij-2019.1/plugins/xslt-debugger/lib/rmi-stubs.jar 7f15b80a5000-7f15b80a7000 r--s 0001b000 08:02 12068946 /export/apps/xtools/LNKD-intellij-2019.1/plugins/xslt-debugger/lib/xslt-debugger-engine.jar 7f15b80a7000-7f15b80a8000 r--s 00001000 08:02 9972247 /export/apps/xtools/LNKD-intellij-2019.1/plugins/WebSocket/lib/resources_en.jar 7f15b80a8000-7f15b80ab000 r--s 00023000 08:02 9972248 /export/apps/xtools/LNKD-intellij-2019.1/plugins/WebSocket/lib/websocket-support.jar 7f15b80ab000-7f15b80ad000 r--s 00015000 08:02 12068847 /export/apps/xtools/LNKD-intellij-2019.1/plugins/tasks-time-tracking/lib/tasks-time-tracking.jar 7f15b80ad000-7f15b80ae000 r--s 00001000 08:02 11414026 /export/apps/xtools/LNKD-intellij-2019.1/plugins/dsm/lib/resources_en.jar 7f15b80ae000-7f15b80b3000 r--s 00070000 08:02 11414025 /export/apps/xtools/LNKD-intellij-2019.1/plugins/dsm/lib/dsm.jar 7f15b80b3000-7f15b80b6000 r--s 00030000 08:02 11413980 /export/apps/xtools/LNKD-intellij-2019.1/plugins/configurationScript/lib/configurationScript.jar 7f15b80b6000-7f15b80b7000 r--s 00000000 08:02 9972156 /export/apps/xtools/LNKD-intellij-2019.1/plugins/SeamNavigation/lib/resources_en.jar 7f15b80b7000-7f15b80ba000 r--s 00027000 08:02 9972157 /export/apps/xtools/LNKD-intellij-2019.1/plugins/SeamNavigation/lib/seam-navigation.jar 7f15b80ba000-7f15b80bd000 r--s 0002d000 08:02 9972161 /export/apps/xtools/LNKD-intellij-2019.1/plugins/SeamPageflow/lib/seam-pageflow.jar 7f15b80bd000-7f15b80be000 r--s 00000000 08:02 9972160 /export/apps/xtools/LNKD-intellij-2019.1/plugins/SeamPageflow/lib/resources_en.jar 7f15b80be000-7f15b80c0000 r--s 00000000 08:02 9853809 /export/apps/xtools/LNKD-intellij-2019.1/plugins/BatchApplications/lib/resources_en.jar 7f15b80c0000-7f15b80c3000 r--s 00033000 08:02 9853808 /export/apps/xtools/LNKD-intellij-2019.1/plugins/BatchApplications/lib/batch-applications-support.jar 7f15b80c3000-7f15b80c4000 r--s 00000000 08:02 9963774 /export/apps/xtools/LNKD-intellij-2019.1/plugins/BeanValidation/lib/resources_en.jar 7f15b80c4000-7f15b80c8000 r--s 00052000 08:02 9963150 /export/apps/xtools/LNKD-intellij-2019.1/plugins/BeanValidation/lib/bean_validation.jar 7f15b80c8000-7f15b80ce000 r--s 00090000 08:02 12068922 /export/apps/xtools/LNKD-intellij-2019.1/plugins/webSphereIntegration/lib/webSphereIntegration.jar 7f15b80ce000-7f15b80d4000 r--s 000d6000 08:02 9971664 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Geronimo/lib/geronimoIntegration.jar 7f15b80d4000-7f15b80d9000 r--s 00053000 08:02 9971987 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Jetty/lib/jettyIntegration.jar 7f15b80d9000-7f15b80da000 r--s 00000000 08:02 9972216 /export/apps/xtools/LNKD-intellij-2019.1/plugins/SpringWebSocket/lib/resources_en.jar 7f15b80da000-7f15b80dd000 r--s 00024000 08:02 9972215 /export/apps/xtools/LNKD-intellij-2019.1/plugins/SpringWebSocket/lib/SpringWebSocket.jar 7f15b80dd000-7f15b80df000 r--s 00000000 08:02 9972208 /export/apps/xtools/LNKD-intellij-2019.1/plugins/SpringSecurity/lib/resources_en.jar 7f15b80df000-7f15b80e8000 r--s 0008f000 08:02 9972207 /export/apps/xtools/LNKD-intellij-2019.1/plugins/SpringSecurity/lib/SpringSecurity.jar 7f15b80e8000-7f15b80e9000 r--s 00000000 08:02 9972204 /export/apps/xtools/LNKD-intellij-2019.1/plugins/SpringOSGi/lib/resources_en.jar 7f15b80e9000-7f15b80ec000 r--s 00018000 08:02 9972203 /export/apps/xtools/LNKD-intellij-2019.1/plugins/SpringOSGi/lib/SpringOSGi.jar 7f15b80ec000-7f15b80ed000 r--s 00000000 08:02 9972177 /export/apps/xtools/LNKD-intellij-2019.1/plugins/SpringBatch/lib/resources_en.jar 7f15b80ed000-7f15b80f1000 r--s 0002d000 08:02 9972176 /export/apps/xtools/LNKD-intellij-2019.1/plugins/SpringBatch/lib/SpringBatch.jar 7f15b80f1000-7f15b80f2000 r--s 00001000 08:02 9972212 /export/apps/xtools/LNKD-intellij-2019.1/plugins/SpringWebServices/lib/resources_en.jar 7f15b80f2000-7f15b80f6000 r--s 00054000 08:02 9972211 /export/apps/xtools/LNKD-intellij-2019.1/plugins/SpringWebServices/lib/SpringWebServices.jar 7f15b80f6000-7f15b80f7000 r--s 00001000 08:02 9972190 /export/apps/xtools/LNKD-intellij-2019.1/plugins/SpringData/lib/resources_en.jar 7f15b80f7000-7f15b80fe000 r--s 00088000 08:02 9972189 /export/apps/xtools/LNKD-intellij-2019.1/plugins/SpringData/lib/SpringData.jar 7f15b80fe000-7f15b82f0000 rw-p 00000000 00:00 0 7f15b82f0000-7f15b82fe000 ---p 00000000 00:00 0 7f15b82fe000-7f15b84f0000 rw-p 00000000 00:00 0 7f15b84f0000-7f15b84fe000 ---p 00000000 00:00 0 7f15b84fe000-7f15b86f7000 rw-p 00000000 00:00 0 7f15b86f7000-7f15b86fe000 ---p 00000000 00:00 0 7f15b86fe000-7f15b88fe000 rw-p 00000000 00:00 0 7f15b88fe000-7f15b8901000 r--s 00046000 08:02 11414003 /export/apps/xtools/LNKD-intellij-2019.1/plugins/cucumber-java/lib/cucumber-java.jar 7f15b8901000-7f15b8903000 r--s 0000b000 08:02 11414002 /export/apps/xtools/LNKD-intellij-2019.1/plugins/cucumber-java/lib/cucumber-expressions-6.1.2.jar 7f15b8903000-7f15b8904000 r--s 00000000 08:02 11414006 /export/apps/xtools/LNKD-intellij-2019.1/plugins/cucumber-java/lib/cucumber-jvmFormatter4.jar 7f15b8904000-7f15b890c000 r--s 001a4000 08:02 11414007 /export/apps/xtools/LNKD-intellij-2019.1/plugins/cucumber-java/lib/gherkin-2.12.2.jar 7f15b890c000-7f15b890d000 r--s 00001000 08:02 11414005 /export/apps/xtools/LNKD-intellij-2019.1/plugins/cucumber-java/lib/cucumber-jvmFormatter3.jar 7f15b890d000-7f15b8912000 r--s 00032000 08:02 11414001 /export/apps/xtools/LNKD-intellij-2019.1/plugins/cucumber-java/lib/cucumber-core-1.2.4.jar 7f15b8912000-7f15b8914000 r--s 00009000 08:02 11414004 /export/apps/xtools/LNKD-intellij-2019.1/plugins/cucumber-java/lib/cucumber-jvmFormatter.jar 7f15b8914000-7f15b8917000 ---p 00000000 00:00 0 7f15b8917000-7f15b8c15000 rw-p 00000000 00:00 0 7f15b8c15000-7f15b8c1c000 r--s 0000b000 08:02 9971776 /export/apps/xtools/LNKD-intellij-2019.1/plugins/JSIntentionPowerPack/lib/resources_en.jar 7f15b8c1c000-7f15b8c22000 r--s 00071000 08:02 9971775 /export/apps/xtools/LNKD-intellij-2019.1/plugins/JSIntentionPowerPack/lib/JSIntentionPowerPack.jar 7f15b8c22000-7f15b8e22000 rw-p 00000000 00:00 0 7f15b8e22000-7f15b8e26000 r--s 0000e000 08:02 12068927 /export/apps/xtools/LNKD-intellij-2019.1/plugins/weblogicIntegration/lib/resources_en.jar 7f15b8e26000-7f15b8e2f000 r--s 00244000 08:02 12068930 /export/apps/xtools/LNKD-intellij-2019.1/plugins/weblogicIntegration/lib/weblogicIntegration.jar 7f15b8e2f000-7f15b8e30000 r--s 00007000 08:02 11414176 /export/apps/xtools/LNKD-intellij-2019.1/plugins/j2meplugin/lib/resources_en.jar 7f15b8e30000-7f15b8e36000 r--s 000aa000 08:02 11414175 /export/apps/xtools/LNKD-intellij-2019.1/plugins/j2meplugin/lib/j2meplugin.jar 7f15b8e36000-7f15b8e37000 r--s 00002000 08:02 11414172 /export/apps/xtools/LNKD-intellij-2019.1/plugins/htmltools/lib/resources_en.jar 7f15b8e37000-7f15b8e3b000 r--s 00052000 08:02 11414171 /export/apps/xtools/LNKD-intellij-2019.1/plugins/htmltools/lib/htmltools.jar 7f15b8e3b000-7f15b8e3c000 r--s 00001000 08:02 12068887 /export/apps/xtools/LNKD-intellij-2019.1/plugins/tslint/lib/resources_en.jar 7f15b8e3c000-7f15b8e41000 r--s 00092000 08:02 12068888 /export/apps/xtools/LNKD-intellij-2019.1/plugins/tslint/lib/tslint.jar 7f15b8e41000-7f15b8e44000 ---p 00000000 00:00 0 7f15b8e44000-7f15b9142000 rw-p 00000000 00:00 0 7f15b9142000-7f15b9342000 rw-p 00000000 00:00 0 7f15b9342000-7f15b9355000 r--s 00185000 08:02 11414180 /export/apps/xtools/LNKD-intellij-2019.1/plugins/jBPM/lib/jbpm-support.jar 7f15b9355000-7f15b9359000 r--s 00039000 08:02 11414179 /export/apps/xtools/LNKD-intellij-2019.1/plugins/jBPM/lib/jbpm-graph-api.jar 7f15b9359000-7f15b935a000 r--s 00000000 08:02 11414162 /export/apps/xtools/LNKD-intellij-2019.1/plugins/herokuIntegration/lib/resources_en.jar 7f15b935a000-7f15b935c000 r--s 0001d000 08:02 11414161 /export/apps/xtools/LNKD-intellij-2019.1/plugins/herokuIntegration/lib/herokuIntegration.jar 7f15b935c000-7f15b955c000 rw-p 00000000 00:00 0 7f15b955c000-7f15b955d000 r--s 00001000 08:02 11414389 /export/apps/xtools/LNKD-intellij-2019.1/plugins/performanceTesting/lib/resources_en.jar 7f15b955d000-7f15b9560000 r--s 0004f000 08:02 11414388 /export/apps/xtools/LNKD-intellij-2019.1/plugins/performanceTesting/lib/performanceTesting.jar 7f15b9560000-7f15b9563000 r--s 0001d000 08:02 11414390 /export/apps/xtools/LNKD-intellij-2019.1/plugins/performanceTesting/lib/yjp-controller-api-redist.jar 7f15b9563000-7f15b9564000 r--s 00022000 08:02 11414387 /export/apps/xtools/LNKD-intellij-2019.1/plugins/performanceTesting/lib/async-profiler-1.5-ea.jar 7f15b9564000-7f15b9566000 r--s 00009000 08:02 9971741 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Guice/lib/resources_en.jar 7f15b9566000-7f15b956a000 r--s 0004e000 08:02 9971740 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Guice/lib/Guice.jar 7f15b956a000-7f15b956b000 r--s 00006000 08:02 9972149 /export/apps/xtools/LNKD-intellij-2019.1/plugins/RefactorX/lib/resources_en.jar 7f15b956b000-7f15b9570000 r--s 00063000 08:02 9972148 /export/apps/xtools/LNKD-intellij-2019.1/plugins/RefactorX/lib/RefactorX.jar 7f15b9570000-7f15b9571000 r--s 00002000 08:02 9972137 /export/apps/xtools/LNKD-intellij-2019.1/plugins/PerforceIntegration/lib/resources_en.jar 7f15b9571000-7f15b957e000 r--s 001ca000 08:02 9972135 /export/apps/xtools/LNKD-intellij-2019.1/plugins/PerforceIntegration/lib/PerforceIntegration.jar 7f15b957e000-7f15b9580000 r--s 00010000 08:02 9972136 /export/apps/xtools/LNKD-intellij-2019.1/plugins/PerforceIntegration/lib/perforce_util.jar 7f15b9580000-7f15b9581000 r--s 00000000 08:02 11414369 /export/apps/xtools/LNKD-intellij-2019.1/plugins/openShiftIntegration/lib/resources_en.jar 7f15b9581000-7f15b9585000 r--s 00049000 08:02 11414368 /export/apps/xtools/LNKD-intellij-2019.1/plugins/openShiftIntegration/lib/openShiftIntegration.jar 7f15b9585000-7f15b9785000 rw-p 00000000 00:00 0 7f15b9785000-7f15b9985000 rw-p 00000000 00:00 0 7f15b9985000-7f15b9986000 r--s 00002000 08:02 11414197 /export/apps/xtools/LNKD-intellij-2019.1/plugins/jboss-core/lib/jboss-core.jar 7f15b9986000-7f15b9b86000 rw-p 00000000 00:00 0 7f15b9b86000-7f15b9b87000 r--s 00000000 08:02 12068877 /export/apps/xtools/LNKD-intellij-2019.1/plugins/thymeleaf/lib/resources_en.jar 7f15b9b87000-7f15b9b94000 r--s 000f5000 08:02 12068878 /export/apps/xtools/LNKD-intellij-2019.1/plugins/thymeleaf/lib/thymeleaf-support.jar 7f15b9b94000-7f15b9b95000 r--s 00006000 08:02 11414431 /export/apps/xtools/LNKD-intellij-2019.1/plugins/spy-js/lib/resources_en.jar 7f15b9b95000-7f15b9ba2000 r--s 00161000 08:02 11414433 /export/apps/xtools/LNKD-intellij-2019.1/plugins/spy-js/lib/spy-js.jar 7f15b9ba2000-7f15b9ba5000 r--s 00023000 08:02 11414432 /export/apps/xtools/LNKD-intellij-2019.1/plugins/spy-js/lib/socketio.jar 7f15b9ba5000-7f15b9bcb000 r--s 0048d000 08:02 9971717 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Grails/lib/grails_integration.jar 7f15b9bcb000-7f15b9bcc000 r--s 00005000 08:02 9971714 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Grails/lib/grails-gradle-tooling.jar 7f15b9bcc000-7f15b9bcd000 r--s 00003000 08:02 9971716 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Grails/lib/grails-rt.jar 7f15b9bcd000-7f15b9bce000 r--s 00005000 08:02 9971712 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Grails/lib/grails-compiler-patch.jar 7f15b9bce000-7f15b9bcf000 r--s 00001000 08:02 9971715 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Grails/lib/grails-jps-plugin.jar 7f15b9bcf000-7f15b9bd0000 r--s 00008000 08:02 11413977 /export/apps/xtools/LNKD-intellij-2019.1/plugins/coffeescript-core/lib/resources_en.jar 7f15b9bd0000-7f15b9bd8000 r--s 00206000 08:02 11413976 /export/apps/xtools/LNKD-intellij-2019.1/plugins/coffeescript-core/lib/coffeescript-core.jar 7f15b9bd8000-7f15b9bdd000 r--s 0005b000 08:02 11414413 /export/apps/xtools/LNKD-intellij-2019.1/plugins/restWebServices/lib/rs.jar 7f15b9bdd000-7f15b9bdf000 r--s 00025000 08:02 11414415 /export/apps/xtools/LNKD-intellij-2019.1/plugins/restWebServices/lib/ws-utils.jar 7f15b9bdf000-7f15b9be1000 r--s 00000000 08:02 11414414 /export/apps/xtools/LNKD-intellij-2019.1/plugins/restWebServices/lib/ws-rt.jar 7f15b9be1000-7f15b9be2000 r--s 00003000 08:02 11414409 /export/apps/xtools/LNKD-intellij-2019.1/plugins/restClient/lib/resources_en.jar 7f15b9be2000-7f15b9bee000 r--s 0015a000 08:02 11414410 /export/apps/xtools/LNKD-intellij-2019.1/plugins/restClient/lib/restClient.jar 7f15b9bee000-7f15b9bf1000 r--s 00004000 08:02 9971661 /export/apps/xtools/LNKD-intellij-2019.1/plugins/FreeMarker/lib/resources_en.jar 7f15b9bf1000-7f15b9bfd000 r--s 00168000 08:02 9971660 /export/apps/xtools/LNKD-intellij-2019.1/plugins/FreeMarker/lib/core.jar 7f15b9bfd000-7f15b9bfe000 r--s 00004000 08:02 11414051 /export/apps/xtools/LNKD-intellij-2019.1/plugins/flex/lib/flexmojos-idea-configurator.jar 7f15b9bfe000-7f15b9c00000 r--s 0001a000 08:02 11414112 /export/apps/xtools/LNKD-intellij-2019.1/plugins/flex/lib/resources_en.jar 7f15b9c00000-7f15b9c02000 r--s 0000c000 08:02 11414107 /export/apps/xtools/LNKD-intellij-2019.1/plugins/flex/lib/idea-fdb-4.0.0.14159-fix_src.zip 7f15b9c02000-7f15b9c29000 r--s 00634000 08:02 11414045 /export/apps/xtools/LNKD-intellij-2019.1/plugins/flex/lib/FlexSupport.jar 7f15b9c29000-7f15b9c2a000 r--s 00007000 08:02 11414053 /export/apps/xtools/LNKD-intellij-2019.1/plugins/flex/lib/idea-fcsh-fix_src.zip 7f15b9c2a000-7f15b9c2b000 r--s 00010000 08:02 11414108 /export/apps/xtools/LNKD-intellij-2019.1/plugins/flex/lib/idea-fdb-4.5.0.20967-fix.jar 7f15b9c2b000-7f15b9c2c000 r--s 0000c000 08:02 11414104 /export/apps/xtools/LNKD-intellij-2019.1/plugins/flex/lib/idea-fdb-3-fix_src.zip 7f15b9c2c000-7f15b9c2e000 r--s 00019000 08:02 11414047 /export/apps/xtools/LNKD-intellij-2019.1/plugins/flex/lib/flex-jps-plugin.jar 7f15b9c2e000-7f15b9c33000 r--s 0007e000 08:02 11414048 /export/apps/xtools/LNKD-intellij-2019.1/plugins/flex/lib/flex-shared.jar 7f15b9c33000-7f15b9c34000 r--s 00007000 08:02 11414111 /export/apps/xtools/LNKD-intellij-2019.1/plugins/flex/lib/idea-flex-compiler-fix_src.zip 7f15b9c34000-7f15b9c35000 r--s 0000f000 08:02 11414054 /export/apps/xtools/LNKD-intellij-2019.1/plugins/flex/lib/idea-fdb-3-fix.jar 7f15b9c35000-7f15b9c36000 r--s 0000d000 08:02 11414109 /export/apps/xtools/LNKD-intellij-2019.1/plugins/flex/lib/idea-fdb-4.5.0.20967-fix_src.zip 7f15b9c36000-7f15b9c37000 r--s 00006000 08:02 11414049 /export/apps/xtools/LNKD-intellij-2019.1/plugins/flex/lib/flexmojos-flex-configs-generator-server-31.jar 7f15b9c37000-7f15b9c39000 r--s 00004000 08:02 11414046 /export/apps/xtools/LNKD-intellij-2019.1/plugins/flex/lib/flex-compiler.jar 7f15b9c39000-7f15b9c3a000 r--s 00010000 08:02 11414106 /export/apps/xtools/LNKD-intellij-2019.1/plugins/flex/lib/idea-fdb-4.0.0.14159-fix.jar 7f15b9c3a000-7f15b9c3b000 r--s 0000e000 08:02 11414052 /export/apps/xtools/LNKD-intellij-2019.1/plugins/flex/lib/idea-fcsh-fix.jar 7f15b9c3b000-7f15b9c3c000 r--s 00006000 08:02 11414050 /export/apps/xtools/LNKD-intellij-2019.1/plugins/flex/lib/flexmojos-flex-configs-generator-server.jar 7f15b9c3c000-7f15b9c3e000 r--s 00010000 08:02 11414110 /export/apps/xtools/LNKD-intellij-2019.1/plugins/flex/lib/idea-flex-compiler-fix.jar 7f15b9c3e000-7f15b9c3f000 r--s 00001000 08:02 24642278 /home/broberts/.IntelliJIdeaLI13/config/plugins/handlebars/lib/resources_en.jar 7f15b9c3f000-7f15b9c44000 r--s 0004a000 08:02 24642277 /home/broberts/.IntelliJIdeaLI13/config/plugins/handlebars/lib/handlebars.jar 7f15b9c44000-7f15b9c45000 r--s 00001000 08:02 12068837 /export/apps/xtools/LNKD-intellij-2019.1/plugins/stylus/lib/resources_en.jar 7f15b9c45000-7f15b9c4a000 r--s 00052000 08:02 12068838 /export/apps/xtools/LNKD-intellij-2019.1/plugins/stylus/lib/stylus.jar 7f15b9c4a000-7f15b9c4c000 r--s 00002000 08:02 11414215 /export/apps/xtools/LNKD-intellij-2019.1/plugins/less/lib/resources_en.jar 7f15b9c4c000-7f15b9c52000 r--s 00087000 08:02 11414214 /export/apps/xtools/LNKD-intellij-2019.1/plugins/less/lib/less.jar 7f15b9c52000-7f15b9c53000 r--s 00001000 08:02 11414158 /export/apps/xtools/LNKD-intellij-2019.1/plugins/haml/lib/resources_en.jar 7f15b9c53000-7f15b9c56000 r--s 0002e000 08:02 11414157 /export/apps/xtools/LNKD-intellij-2019.1/plugins/haml/lib/haml.jar 7f15b9c56000-7f15b9c58000 r--s 00003000 08:02 9972227 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Tapestry/lib/resources_en.jar 7f15b9c58000-7f15b9c5b000 r--s 00014000 08:02 9972226 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Tapestry/lib/commons-chain-1.2.jar 7f15b9c5b000-7f15b9c68000 r--s 0013d000 08:02 9972228 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Tapestry/lib/tapestry.jar 7f15b9c68000-7f15b9c69000 r--s 00001000 08:02 11414022 /export/apps/xtools/LNKD-intellij-2019.1/plugins/drools/lib/resources_en.jar 7f15b9c69000-7f15b9c76000 r--s 00115000 08:02 11414021 /export/apps/xtools/LNKD-intellij-2019.1/plugins/drools/lib/drools-support.jar 7f15b9c76000-7f15b9c78000 r--s 00008000 08:02 11413959 /export/apps/xtools/LNKD-intellij-2019.1/plugins/cfmlSupport/lib/resources_en.jar 7f15b9c78000-7f15b9c83000 r--s 007f8000 08:02 11413958 /export/apps/xtools/LNKD-intellij-2019.1/plugins/cfmlSupport/lib/cfmlSupport.jar 7f15b9c83000-7f15b9c86000 r--s 0001a000 08:02 24389462 /home/broberts/.IntelliJIdeaLI13/config/plugins/dust_syntax_0_3_8.jar 7f15b9c86000-7f15b9c87000 r--s 00000000 08:02 24521416 /home/broberts/.IntelliJIdeaLI13/config/plugins/ini4idea/lib/resources_en.jar 7f15b9c87000-7f15b9c89000 r--s 0002f000 08:02 24521415 /home/broberts/.IntelliJIdeaLI13/config/plugins/ini4idea/lib/ini4idea.jar 7f15b9c89000-7f15b9c8a000 r--s 00000000 08:02 11413950 /export/apps/xtools/LNKD-intellij-2019.1/plugins/asp/lib/resources_en.jar 7f15b9c8a000-7f15b9c8b000 r--s 0000a000 08:02 11413949 /export/apps/xtools/LNKD-intellij-2019.1/plugins/asp/lib/asp.jar 7f15b9c8b000-7f15b9c8d000 r--s 00004000 08:02 9972237 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Velocity/lib/resources_en.jar 7f15b9c8d000-7f15b9c94000 r--s 000c4000 08:02 9972236 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Velocity/lib/core.jar 7f15b9c94000-7f15b9c95000 rwxp 00000000 00:00 0 7f15b9c95000-7f15b9c98000 ---p 00000000 00:00 0 7f15b9c98000-7f15b9ece000 rw-p 00000000 00:00 0 7f15b9ece000-7f15b9ecf000 r--s 00005000 08:02 9972152 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Seam/lib/resources_en.jar 7f15b9ecf000-7f15b9ed9000 r--s 00107000 08:02 9972153 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Seam/lib/seam-support.jar 7f15b9ed9000-7f15b9edc000 ---p 00000000 00:00 0 7f15b9edc000-7f15b9fda000 rw-p 00000000 00:00 0 7f15b9fda000-7f15b9fdd000 ---p 00000000 00:00 0 7f15b9fdd000-7f15baaca000 rw-p 00000000 00:00 0 7f15baaca000-7f15baacc000 r--s 00002000 08:02 11413955 /export/apps/xtools/LNKD-intellij-2019.1/plugins/aspectj/lib/resources_en.jar 7f15baacc000-7f15baad4000 r--s 000ba000 08:02 11413954 /export/apps/xtools/LNKD-intellij-2019.1/plugins/aspectj/lib/aspectj.jar 7f15baad4000-7f15baad7000 r--s 00022000 08:02 11413953 /export/apps/xtools/LNKD-intellij-2019.1/plugins/aspectj/lib/aspectj-jps-plugin.jar 7f15baad7000-7f15bacd7000 rw-p 00000000 00:00 0 7f15bacd7000-7f15bacd8000 r--s 00002000 08:02 11414424 /export/apps/xtools/LNKD-intellij-2019.1/plugins/settings-repository/lib/resources_en.jar 7f15bacd8000-7f15bacde000 r--s 000b4000 08:02 11414425 /export/apps/xtools/LNKD-intellij-2019.1/plugins/settings-repository/lib/settings-repository.jar 7f15bacde000-7f15bad08000 r--s 00282000 08:02 11414423 /export/apps/xtools/LNKD-intellij-2019.1/plugins/settings-repository/lib/jgit.jar 7f15bad08000-7f15bad09000 r--s 00001000 08:02 11413963 /export/apps/xtools/LNKD-intellij-2019.1/plugins/cloud-config/lib/resources_en.jar 7f15bad09000-7f15bad0c000 r--s 00042000 08:02 11413962 /export/apps/xtools/LNKD-intellij-2019.1/plugins/cloud-config/lib/cloud-config.jar 7f15bad0c000-7f15bad0f000 r--s 0003a000 08:02 9972183 /export/apps/xtools/LNKD-intellij-2019.1/plugins/SpringBoot/lib/spring-boot-initializr.jar 7f15bad0f000-7f15bad12000 r--s 00030000 08:02 9972180 /export/apps/xtools/LNKD-intellij-2019.1/plugins/SpringBoot/lib/spring-boot-cloud-stream.jar 7f15bad12000-7f15bad14000 r--s 00011000 08:02 9972181 /export/apps/xtools/LNKD-intellij-2019.1/plugins/SpringBoot/lib/spring-boot-cloud.jar 7f15bad14000-7f15bad25000 r--s 001cc000 08:02 9972186 /export/apps/xtools/LNKD-intellij-2019.1/plugins/SpringBoot/lib/spring-boot.jar 7f15bad25000-7f15bad28000 r--s 00050000 08:02 9972184 /export/apps/xtools/LNKD-intellij-2019.1/plugins/SpringBoot/lib/spring-boot-mvc.jar 7f15bad28000-7f15bad2f000 r--s 000d0000 08:02 9972185 /export/apps/xtools/LNKD-intellij-2019.1/plugins/SpringBoot/lib/spring-boot-run.jar 7f15bad2f000-7f15bad31000 r--s 00025000 08:02 9972182 /export/apps/xtools/LNKD-intellij-2019.1/plugins/SpringBoot/lib/spring-boot-config-yaml.jar 7f15bad31000-7f15bad33000 r--s 00001000 08:02 9972220 /export/apps/xtools/LNKD-intellij-2019.1/plugins/SpringWebflow/lib/resources_en.jar 7f15bad33000-7f15bad3c000 r--s 000c4000 08:02 9972219 /export/apps/xtools/LNKD-intellij-2019.1/plugins/SpringWebflow/lib/SpringWebflow.jar 7f15bad3c000-7f15bad3d000 r--s 00067000 08:02 9972199 /export/apps/xtools/LNKD-intellij-2019.1/plugins/SpringMvc/lib/resources_en.jar 7f15bad3d000-7f15bad3e000 r--s 0000c000 08:02 9972200 /export/apps/xtools/LNKD-intellij-2019.1/plugins/SpringMvc/lib/spring-mvc-api.jar 7f15bad3e000-7f15bad47000 r--s 000ef000 08:02 9972198 /export/apps/xtools/LNKD-intellij-2019.1/plugins/SpringMvc/lib/SpringMvc.jar 7f15bad47000-7f15bad48000 r--s 00001000 08:02 9972194 /export/apps/xtools/LNKD-intellij-2019.1/plugins/SpringIntegration/lib/resources_en.jar 7f15bad48000-7f15bad5d000 r--s 00110000 08:02 9972193 /export/apps/xtools/LNKD-intellij-2019.1/plugins/SpringIntegration/lib/SpringIntegration.jar 7f15bad5d000-7f15bad5e000 r--s 0000b000 08:02 9972195 /export/apps/xtools/LNKD-intellij-2019.1/plugins/SpringIntegration/lib/spring-integration.jar 7f15bad5e000-7f15bad5f000 r--s 0000b000 08:02 9971680 /export/apps/xtools/LNKD-intellij-2019.1/plugins/GoogleAppEngine/lib/google-app-engine-jps-plugin.jar 7f15bad5f000-7f15bad62000 r--s 00052000 08:02 9971678 /export/apps/xtools/LNKD-intellij-2019.1/plugins/GoogleAppEngine/lib/GoogleAppEngine.jar 7f15bad62000-7f15bad63000 r--s 00000000 08:02 9971679 /export/apps/xtools/LNKD-intellij-2019.1/plugins/GoogleAppEngine/lib/appEngine-runtime.jar 7f15bad63000-7f15bad64000 r--s 00004000 08:02 11414017 /export/apps/xtools/LNKD-intellij-2019.1/plugins/dmServer/lib/dmServer-jps-plugin.jar 7f15bad64000-7f15bad66000 r--s 00003000 08:02 11414016 /export/apps/xtools/LNKD-intellij-2019.1/plugins/dmServer/lib/com.springsource.server.management.remote-1.0.0.RELEASE.jar 7f15bad66000-7f15bad75000 r--s 00174000 08:02 11414018 /export/apps/xtools/LNKD-intellij-2019.1/plugins/dmServer/lib/dmServerSupport.jar 7f15bad75000-7f15bad77000 r--s 00025000 08:02 9972243 /export/apps/xtools/LNKD-intellij-2019.1/plugins/WebServices/lib/ws-utils.jar 7f15bad77000-7f15bad79000 r--s 00000000 08:02 9972242 /export/apps/xtools/LNKD-intellij-2019.1/plugins/WebServices/lib/ws-rt.jar 7f15bad79000-7f15bad84000 r--s 001a4000 08:02 9972244 /export/apps/xtools/LNKD-intellij-2019.1/plugins/WebServices/lib/ws.jar 7f15bad84000-7f15bad8e000 r--s 00119000 08:02 9972223 /export/apps/xtools/LNKD-intellij-2019.1/plugins/StrutsAssistant/lib/struts.jar 7f15bad8e000-7f15bad90000 r--s 00005000 08:02 9853752 /export/apps/xtools/LNKD-intellij-2019.1/plugins/AngularJS/lib/resources_en.jar 7f15bad90000-7f15bada6000 r--s 00314000 08:02 9853751 /export/apps/xtools/LNKD-intellij-2019.1/plugins/AngularJS/lib/AngularJS.jar 7f15bada6000-7f15badbd000 r--s 001a9000 08:02 24654100 /home/broberts/.IntelliJIdeaLI13/config/plugins/BashSupport/lib/bashsupport-1.7.7.jar 7f15badbd000-7f15badbe000 r--s 00005000 08:02 11414419 /export/apps/xtools/LNKD-intellij-2019.1/plugins/sass/lib/resources_en.jar 7f15badbe000-7f15badde000 r--s 00168000 08:02 11414418 /export/apps/xtools/LNKD-intellij-2019.1/plugins/sass/lib/jrubyparser-0.5.4.jar 7f15badde000-7f15bade8000 r--s 002bc000 08:02 11414420 /export/apps/xtools/LNKD-intellij-2019.1/plugins/sass/lib/sass.jar 7f15bade8000-7f15badea000 r--s 00002000 08:02 11414194 /export/apps/xtools/LNKD-intellij-2019.1/plugins/javaFX/lib/resources_en.jar 7f15badea000-7f15badeb000 r--s 0000c000 08:02 11414192 /export/apps/xtools/LNKD-intellij-2019.1/plugins/javaFX/lib/javaFX-jps-plugin.jar 7f15badeb000-7f15badf4000 r--s 00172000 08:02 11414193 /export/apps/xtools/LNKD-intellij-2019.1/plugins/javaFX/lib/javaFX.jar 7f15badf4000-7f15badf6000 r--s 0000b000 08:02 11414191 /export/apps/xtools/LNKD-intellij-2019.1/plugins/javaFX/lib/common-javaFX-plugin.jar 7f15badf6000-7f15bae20000 r--s 00227000 08:02 11414190 /export/apps/xtools/LNKD-intellij-2019.1/plugins/javaFX/lib/SceneBuilderKit-8.2.0.jar 7f15bae20000-7f15bae22000 r--s 00001000 08:02 11413946 /export/apps/xtools/LNKD-intellij-2019.1/plugins/arquillian-core/lib/resources_en.jar 7f15bae22000-7f15bae24000 r--s 00002000 08:02 11413945 /export/apps/xtools/LNKD-intellij-2019.1/plugins/arquillian-core/lib/mavenDependencies.jar 7f15bae24000-7f15bae25000 r--s 00009000 08:02 11413943 /export/apps/xtools/LNKD-intellij-2019.1/plugins/arquillian-core/lib/arquillian-junit.jar 7f15bae25000-7f15bae27000 r--s 0000a000 08:02 11413944 /export/apps/xtools/LNKD-intellij-2019.1/plugins/arquillian-core/lib/arquillian-testng.jar 7f15bae27000-7f15bae2d000 r--s 00076000 08:02 11413942 /export/apps/xtools/LNKD-intellij-2019.1/plugins/arquillian-core/lib/arquillian-core.jar 7f15bae2d000-7f15bae30000 r--s 00050000 08:02 9972233 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Tomcat/lib/tomcatIntegration.jar 7f15bae30000-7f15bae3c000 r--s 001b3000 08:02 9971764 /export/apps/xtools/LNKD-intellij-2019.1/plugins/JBoss/lib/jbossIntegration.jar 7f15bae3c000-7f15bae43000 r--s 00151000 08:02 9971670 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Glassfish/lib/glassfishIntegration.jar 7f15bae43000-7f15bae46000 r--s 0000b000 08:02 11414013 /export/apps/xtools/LNKD-intellij-2019.1/plugins/devkit/lib/resources_en.jar 7f15bae46000-7f15bae47000 r--s 00007000 08:02 11414010 /export/apps/xtools/LNKD-intellij-2019.1/plugins/devkit/lib/devkit-jps-plugin.jar 7f15bae47000-7f15bae49000 r--s 00009000 08:02 11414012 /export/apps/xtools/LNKD-intellij-2019.1/plugins/devkit/lib/dtdparser113.jar 7f15bae49000-7f15bae5a000 r--s 00242000 08:02 11414011 /export/apps/xtools/LNKD-intellij-2019.1/plugins/devkit/lib/devkit.jar 7f15bae5a000-7f15bae5b000 r--s 00001000 08:02 11414139 /export/apps/xtools/LNKD-intellij-2019.1/plugins/github/lib/resources_en.jar 7f15bae5b000-7f15bae71000 r--s 00259000 08:02 11414138 /export/apps/xtools/LNKD-intellij-2019.1/plugins/github/lib/github.jar 7f15bae71000-7f15bae72000 r--s 00004000 08:02 11414384 /export/apps/xtools/LNKD-intellij-2019.1/plugins/osmorc/lib/resources_en.jar 7f15bae72000-7f15bae73000 r--s 00002000 08:02 11414381 /export/apps/xtools/LNKD-intellij-2019.1/plugins/osmorc/lib/org.osgi.namespace.service-1.0.0.jar 7f15bae73000-7f15bae74000 r--s 00002000 08:02 11414379 /export/apps/xtools/LNKD-intellij-2019.1/plugins/osmorc/lib/org.osgi.namespace.extender-1.0.1.jar 7f15bae74000-7f15bae75000 r--s 00002000 08:02 11414380 /export/apps/xtools/LNKD-intellij-2019.1/plugins/osmorc/lib/org.osgi.namespace.implementation-1.0.0.jar 7f15bae75000-7f15bae7d000 r--s 000f7000 08:02 11414383 /export/apps/xtools/LNKD-intellij-2019.1/plugins/osmorc/lib/osmorc.jar 7f15bae7d000-7f15baeaa000 r--s 0025e000 08:02 11414374 /export/apps/xtools/LNKD-intellij-2019.1/plugins/osmorc/lib/biz.aQute.bndlib-4.0.0.jar 7f15baeaa000-7f15baeb2000 r--s 00061000 08:02 11414376 /export/apps/xtools/LNKD-intellij-2019.1/plugins/osmorc/lib/biz.aQute.resolve-4.0.0.jar 7f15baeb2000-7f15baec6000 r--s 0025d000 08:02 11414200 /export/apps/xtools/LNKD-intellij-2019.1/plugins/jsp/lib/jsp-impl.jar 7f15baec6000-7f15baec8000 r--s 00005000 08:02 9972167 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Spring/lib/spring-eclipse.jar 7f15baec8000-7f15baefa000 r--s 00678000 08:02 9972173 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Spring/lib/spring.jar 7f15baefa000-7f15baefc000 r--s 00015000 08:02 9972169 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Spring/lib/spring-graph.jar 7f15baefc000-7f15baefd000 r--s 00004000 08:02 9972170 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Spring/lib/spring-jsf.jar 7f15baefd000-7f15baf01000 r--s 00055000 08:02 9972168 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Spring/lib/spring-el.jar 7f15baf01000-7f15baf03000 r--s 00008000 08:02 9972172 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Spring/lib/spring-web.jar 7f15baf03000-7f15baf06000 r--s 00036000 08:02 9972166 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Spring/lib/spring-aop.jar 7f15baf06000-7f15baf08000 r--s 0002f000 08:02 9972171 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Spring/lib/spring-persistence-integration.jar 7f15baf08000-7f15baf09000 r--s 00001000 08:02 12068867 /export/apps/xtools/LNKD-intellij-2019.1/plugins/terminal/lib/resources_en.jar 7f15baf09000-7f15baf0c000 r--s 0004d000 08:02 12068868 /export/apps/xtools/LNKD-intellij-2019.1/plugins/terminal/lib/terminal.jar 7f15baf0c000-7f15baf0e000 r--s 00011000 08:02 12068841 /export/apps/xtools/LNKD-intellij-2019.1/plugins/svn4idea/lib/resources_en.jar 7f15baf0e000-7f15baf2a000 r--s 0041a000 08:02 12068843 /export/apps/xtools/LNKD-intellij-2019.1/plugins/svn4idea/lib/svn4idea.jar 7f15baf2a000-7f15baf2e000 r--s 00651000 08:02 12068842 /export/apps/xtools/LNKD-intellij-2019.1/plugins/svn4idea/lib/sqlite-jdbc-3.20.1.jar 7f15baf2e000-7f15baf45000 r--s 00418000 08:02 11414133 /export/apps/xtools/LNKD-intellij-2019.1/plugins/git4idea/lib/git4idea.jar 7f15baf45000-7f15baf46000 r--s 0000c000 08:02 11414135 /export/apps/xtools/LNKD-intellij-2019.1/plugins/git4idea/lib/resources_en.jar 7f15baf46000-7f15baf48000 r--s 0001e000 08:02 11414134 /export/apps/xtools/LNKD-intellij-2019.1/plugins/git4idea/lib/remote-servers-git.jar 7f15baf48000-7f15baf4a000 r--s 00011000 08:02 11414132 /export/apps/xtools/LNKD-intellij-2019.1/plugins/git4idea/lib/git4idea-rt.jar 7f15baf4a000-7f15baf4b000 r--s 00000000 08:02 11414187 /export/apps/xtools/LNKD-intellij-2019.1/plugins/java-i18n/lib/resources_en.jar 7f15baf4b000-7f15baf4f000 r--s 00074000 08:02 11414186 /export/apps/xtools/LNKD-intellij-2019.1/plugins/java-i18n/lib/java-i18n.jar 7f15baf4f000-7f15baf51000 r--s 00003000 08:02 12068872 /export/apps/xtools/LNKD-intellij-2019.1/plugins/testng/lib/resources_en.jar 7f15baf51000-7f15baf53000 r--s 0000c000 08:02 12068871 /export/apps/xtools/LNKD-intellij-2019.1/plugins/testng/lib/jcommander-1.27.jar 7f15baf53000-7f15baf58000 r--s 0009c000 08:02 12068874 /export/apps/xtools/LNKD-intellij-2019.1/plugins/testng/lib/testng-plugin.jar 7f15baf58000-7f15baf66000 r--s 000bf000 08:02 12068873 /export/apps/xtools/LNKD-intellij-2019.1/plugins/testng/lib/testng-6.8.8.jar 7f15baf66000-7f15baf6b000 r--s 0003d000 08:02 11413992 /export/apps/xtools/LNKD-intellij-2019.1/plugins/coverage/lib/jacocoagent.jar 7f15baf6b000-7f15baf6c000 r--s 00000000 08:02 11413994 /export/apps/xtools/LNKD-intellij-2019.1/plugins/coverage/lib/resources_en.jar 7f15baf6c000-7f15baf7b000 r--s 000c8000 08:02 11413991 /export/apps/xtools/LNKD-intellij-2019.1/plugins/coverage/lib/freemarker.jar 7f15baf7b000-7f15baf7f000 r--s 00012000 08:02 11413988 /export/apps/xtools/LNKD-intellij-2019.1/plugins/coverage/lib/coverage-report.jar 7f15baf7f000-7f15baf80000 r--s 00001000 08:02 11413990 /export/apps/xtools/LNKD-intellij-2019.1/plugins/coverage/lib/coverage_rt.jar 7f15baf80000-7f15baf81000 r--s 00001000 08:02 11413987 /export/apps/xtools/LNKD-intellij-2019.1/plugins/coverage/lib/coverage-report-idea.jar 7f15baf81000-7f15baf83000 r--s 00049000 08:02 11413989 /export/apps/xtools/LNKD-intellij-2019.1/plugins/coverage/lib/coverage.jar 7f15baf83000-7f15baf8d000 r--s 000a6000 08:02 11413993 /export/apps/xtools/LNKD-intellij-2019.1/plugins/coverage/lib/jacocoant.jar 7f15baf8d000-7f15baf8e000 r--s 00000000 08:02 9966438 /export/apps/xtools/LNKD-intellij-2019.1/plugins/ByteCodeViewer/lib/resources_en.jar 7f15baf8e000-7f15baf8f000 r--s 00009000 08:02 9966437 /export/apps/xtools/LNKD-intellij-2019.1/plugins/ByteCodeViewer/lib/byteCodeViewer.jar 7f15baf8f000-7f15baf90000 r--s 00001000 08:02 9980537 /export/apps/xtools/LNKD-intellij-2019.1/plugins/ant/lib/resources_en.jar 7f15baf90000-7f15baf9e000 r--s 00192000 08:02 9980536 /export/apps/xtools/LNKD-intellij-2019.1/plugins/ant/lib/antIntegration.jar 7f15baf9e000-7f15bafa0000 r--s 00014000 08:02 9980535 /export/apps/xtools/LNKD-intellij-2019.1/plugins/ant/lib/ant-jps-plugin.jar 7f15bafa0000-7f15bafa1000 r--s 0000e000 08:02 9971761 /export/apps/xtools/LNKD-intellij-2019.1/plugins/IntelliLang/lib/intellilang-jps-plugin.jar 7f15bafa1000-7f15bafa8000 r--s 00105000 08:02 9971760 /export/apps/xtools/LNKD-intellij-2019.1/plugins/IntelliLang/lib/IntelliLang.jar 7f15bafa8000-7f15bafa9000 r--s 00006000 08:02 11413984 /export/apps/xtools/LNKD-intellij-2019.1/plugins/copyright/lib/resources_en.jar 7f15bafa9000-7f15bafad000 r--s 0005e000 08:02 11413983 /export/apps/xtools/LNKD-intellij-2019.1/plugins/copyright/lib/copyright.jar 7f15bafad000-7f15bafae000 r--s 00001000 08:02 9971729 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Groovy/lib/groovy-rt-constants.jar 7f15bafae000-7f15bafb1000 r--s 00035000 08:02 9971728 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Groovy/lib/groovy-jps-plugin.jar 7f15bafb1000-7f15bafb2000 r--s 00012000 08:02 9971731 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Groovy/lib/groovy_rt.jar 7f15bafb2000-7f15bafb3000 r--s 00003000 08:02 9971727 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Groovy/lib/groovy-duplicatesDetection.jar 7f15bafb3000-7f15bafb4000 r--s 00003000 08:02 11414394 /export/apps/xtools/LNKD-intellij-2019.1/plugins/properties/lib/resources_en.jar 7f15bafb4000-7f15bafbf000 r--s 00141000 08:02 11414393 /export/apps/xtools/LNKD-intellij-2019.1/plugins/properties/lib/properties.jar 7f15bafbf000-7f15bafc1000 r--s 00010000 08:02 11414365 /export/apps/xtools/LNKD-intellij-2019.1/plugins/maven/lib/resources_en.jar 7f15bafc1000-7f15bafcf000 r--s 000bb000 08:02 11414231 /export/apps/xtools/LNKD-intellij-2019.1/plugins/maven/lib/lucene-core-2.4.1.jar 7f15bafcf000-7f15bafd1000 r--s 0003d000 08:02 11414237 /export/apps/xtools/LNKD-intellij-2019.1/plugins/maven/lib/maven2-server-impl.jar 7f15bafd1000-7f15bafd2000 r--s 00001000 08:02 11414230 /export/apps/xtools/LNKD-intellij-2019.1/plugins/maven/lib/artifact-resolver-m31.jar 7f15bafd2000-7f15bafd7000 r--s 00027000 08:02 11414364 /export/apps/xtools/LNKD-intellij-2019.1/plugins/maven/lib/plexus-archiver-3.0.3.jar 7f15bafd7000-7f15bafd9000 r--s 0002c000 08:02 11414260 /export/apps/xtools/LNKD-intellij-2019.1/plugins/maven/lib/maven3-server-common.jar 7f15bafd9000-7f15bafdb000 r--s 00029000 08:02 11414363 /export/apps/xtools/LNKD-intellij-2019.1/plugins/maven/lib/maven36-server-impl.jar 7f15bafdb000-7f15bafdc000 r--s 00001000 08:02 11414228 /export/apps/xtools/LNKD-intellij-2019.1/plugins/maven/lib/artifact-resolver-m2.jar 7f15bafdc000-7f15bafdd000 r--s 00025000 08:02 11414362 /export/apps/xtools/LNKD-intellij-2019.1/plugins/maven/lib/maven30-server-impl.jar 7f15bafdd000-7f15bafdf000 r--s 0002c000 08:02 11414233 /export/apps/xtools/LNKD-intellij-2019.1/plugins/maven/lib/maven-jps-plugin.jar 7f15bafdf000-7f15bafe1000 r--s 00000000 08:02 11414232 /export/apps/xtools/LNKD-intellij-2019.1/plugins/maven/lib/maven-errorProne-compiler.jar 7f15bafe1000-7f15bafe4000 r--s 0001d000 08:02 11414234 /export/apps/xtools/LNKD-intellij-2019.1/plugins/maven/lib/maven-server-api.jar 7f15bafe4000-7f15bafe5000 r--s 00002000 08:02 11414229 /export/apps/xtools/LNKD-intellij-2019.1/plugins/maven/lib/artifact-resolver-m3.jar 7f15bafe5000-7f15bafe7000 r--s 00027000 08:02 11414261 /export/apps/xtools/LNKD-intellij-2019.1/plugins/maven/lib/maven3-server-impl.jar 7f15bafe7000-7f15bb004000 r--s 003ca000 08:02 11414235 /export/apps/xtools/LNKD-intellij-2019.1/plugins/maven/lib/maven.jar 7f15bb004000-7f15bb005000 r--s 0000b000 08:02 12068856 /export/apps/xtools/LNKD-intellij-2019.1/plugins/tasks/lib/tasks-api.jar 7f15bb005000-7f15bb008000 r--s 00010000 08:02 12068852 /export/apps/xtools/LNKD-intellij-2019.1/plugins/tasks/lib/commons-discovery-0.4.jar 7f15bb008000-7f15bb009000 r--s 00001000 08:02 12068859 /export/apps/xtools/LNKD-intellij-2019.1/plugins/tasks/lib/tasks-java.jar 7f15bb009000-7f15bb01d000 r--s 00173000 08:02 12068849 /export/apps/xtools/LNKD-intellij-2019.1/plugins/tasks/lib/axis-1.4.jar 7f15bb01d000-7f15bb021000 r--s 00018000 08:02 12068860 /export/apps/xtools/LNKD-intellij-2019.1/plugins/tasks/lib/wsdl4j-1.4.jar 7f15bb021000-7f15bb022000 r--s 00004000 08:02 12068851 /export/apps/xtools/LNKD-intellij-2019.1/plugins/tasks/lib/axis-saaj-1.3.jar 7f15bb022000-7f15bb027000 r--s 0004c000 08:02 12068853 /export/apps/xtools/LNKD-intellij-2019.1/plugins/tasks/lib/jira.jar 7f15bb027000-7f15bb029000 r--s 0000c000 08:02 12068854 /export/apps/xtools/LNKD-intellij-2019.1/plugins/tasks/lib/json-path-0.8.0.jar 7f15bb029000-7f15bb02b000 r--s 0000b000 08:02 12068855 /export/apps/xtools/LNKD-intellij-2019.1/plugins/tasks/lib/json-smart-1.1.1.jar 7f15bb02b000-7f15bb036000 r--s 00169000 08:02 12068858 /export/apps/xtools/LNKD-intellij-2019.1/plugins/tasks/lib/tasks-core.jar 7f15bb036000-7f15bb038000 r--s 00006000 08:02 12068850 /export/apps/xtools/LNKD-intellij-2019.1/plugins/tasks/lib/axis-jaxrpc-1.4.jar 7f15bb038000-7f15bb039000 r--s 00002000 08:02 12068857 /export/apps/xtools/LNKD-intellij-2019.1/plugins/tasks/lib/tasks-compatibility.jar 7f15bb039000-7f15bb03b000 r--s 00020000 08:02 11414209 /export/apps/xtools/LNKD-intellij-2019.1/plugins/junit/lib/junit-rt.jar 7f15bb03b000-7f15bb03d000 r--s 00005000 08:02 11414211 /export/apps/xtools/LNKD-intellij-2019.1/plugins/junit/lib/resources_en.jar 7f15bb03d000-7f15bb042000 r--s 00093000 08:02 11414208 /export/apps/xtools/LNKD-intellij-2019.1/plugins/junit/lib/idea-junit.jar 7f15bb042000-7f15bb043000 r--s 0000a000 08:02 11414210 /export/apps/xtools/LNKD-intellij-2019.1/plugins/junit/lib/junit5-rt.jar 7f15bb043000-7f15bb045000 r--s 00014000 08:02 24521412 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/jline-0.9.94.jar 7f15bb045000-7f15bb049000 r--s 0004c000 08:02 24521411 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/jackson-core-2.9.8.jar 7f15bb049000-7f15bb04c000 r--s 0001b000 08:02 24521410 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/junit-3.8.1.jar 7f15bb04c000-7f15bb064000 r--s 00161000 08:02 24521409 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/antlr4-4.5.jar 7f15bb064000-7f15bb068000 r--s 00037000 08:02 24521408 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/ST4-4.0.8.jar 7f15bb068000-7f15bb06d000 r--s 0002b000 08:02 24521407 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/r2-netty-27.0.18.jar 7f15bb06d000-7f15bb06e000 r--s 00002000 08:02 24521406 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/jdk-versions-1.0.2.jar 7f15bb06e000-7f15bb071000 r--s 0000d000 08:02 24521405 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/cache2k-api-1.2.0.Final.jar 7f15bb071000-7f15bb083000 r--s 00137000 08:02 24521404 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/jackson-databind-2.9.8.jar 7f15bb083000-7f15bb08b000 r--s 00046000 08:02 24521403 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/r2-core-27.0.18.jar 7f15bb08b000-7f15bb103000 r--s 010c6000 08:02 24521402 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/jdk-tools-1.8.jar 7f15bb103000-7f15bb106000 r--s 0000e000 08:02 24521401 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/jackson-annotations-2.9.0.jar 7f15bb106000-7f15bb108000 r--s 0000b000 08:02 24521400 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/data-transform-27.0.18.jar 7f15bb108000-7f15bb10b000 r--s 00013000 08:02 24521399 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/retrofit-2.1.0.1.jar 7f15bb10b000-7f15bb10c000 r--s 00003000 08:02 24521398 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/resource-identity-urn-data-template-6.0.3.jar 7f15bb10c000-7f15bb10e000 r--s 00008000 08:02 24521397 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/java-uuid-generator-3.1.5.jar 7f15bb10e000-7f15bb110000 r--s 034d8000 08:02 24521396 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/jxbrowser-6.20-linux.jar 7f15bb110000-7f15bb111000 r--s 0000c000 08:02 24521395 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/commons-logging-1.1.jar 7f15bb111000-7f15bb116000 r--s 00060000 08:02 24521394 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/okhttp-3.10.0.jar 7f15bb116000-7f15bb11b000 r--s 00041000 08:02 24521393 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/commons-lang-2.6.jar 7f15bb11b000-7f15bb11d000 r--s 0000a000 08:02 24521392 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/commons-codec-1.3.jar 7f15bb11d000-7f15bb11e000 r--s 0382d000 08:02 24521391 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/jxbrowser-6.20-mac.jar 7f15bb11e000-7f15bb121000 r--s 0000b000 08:02 24521390 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/multiproduct-api-rest-client-0.1.26.jar 7f15bb121000-7f15bb12c000 r--s 00083000 08:02 24521389 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/data-27.0.18.jar 7f15bb12c000-7f15bb12d000 r--s 00000000 08:02 24521388 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/resource-identity-urn-6.0.3.jar 7f15bb12d000-7f15bb13b000 r--s 0009f000 08:02 24521387 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/d2-27.0.18.jar 7f15bb13b000-7f15bb142000 r--s 00064000 08:02 24521386 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/commons-lang3-3.4.jar 7f15bb142000-7f15bb15a000 r--s 00110000 08:02 24521385 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/netty-3.7.0.Final.jar 7f15bb15a000-7f15bb15c000 r--s 00003000 08:02 24521384 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/entity-stream-27.0.18.jar 7f15bb15c000-7f15bb15e000 r--s 00006000 08:02 24521383 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/commons-cli-1.0.jar 7f15bb15e000-7f15bb161000 r--s 00009000 08:02 24521382 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/multipart-mime-27.0.18.jar 7f15bb161000-7f15bb163000 r--s 0000b000 08:02 24521381 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/multiproduct-api-data-template-0.1.26.jar 7f15bb163000-7f15bb165000 r--s 0000a000 08:02 24521380 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/zero-allocation-hashing-0.7.jar 7f15bb165000-7f15bb16c000 r--s 00067000 08:02 24521379 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/mail-1.4.1.jar 7f15bb16c000-7f15bb174000 r--s 0004d000 08:02 24521378 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/cache2k-core-1.2.0.Final.jar 7f15bb174000-7f15bb176000 r--s 0001a000 08:02 24521377 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/HdrHistogram-2.1.9.jar 7f15bb176000-7f15bb177000 r--s 00000000 08:02 24521376 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/restli-disruptor-27.0.18.jar 7f15bb177000-7f15bb17e000 r--s 00055000 08:02 24521375 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/antlr4-runtime-4.5.jar 7f15bb17e000-7f15bb17f000 r--s 00008000 08:02 24521374 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/degrader-27.0.18.jar 7f15bb17f000-7f15bb183000 r--s 0002a000 08:02 24521373 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/commons-io-2.4.jar 7f15bb183000-7f15bb185000 r--s 00005000 08:02 24521372 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/org.abego.treelayout.core-1.0.1.jar 7f15bb185000-7f15bb188000 r--s 00006000 08:02 24521371 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/jsr305-3.0.0.jar 7f15bb188000-7f15bb18a000 r--s 00017000 08:02 24521370 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/d2-schemas-27.0.18.jar 7f15bb18a000-7f15bb18c000 r--s 0000e000 08:02 24521369 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/activation-1.1.jar 7f15bb18c000-7f15bb198000 r--s 000b6000 08:02 24521368 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/zookeeper-3.4.6.jar 7f15bb198000-7f15bb199000 r--s 00003000 08:02 24521367 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/common-8.0.1.jar 7f15bb199000-7f15bb19d000 r--s 00026000 08:02 24521366 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/commons-compress-1.2.jar 7f15bb19d000-7f15bb1a0000 r--s 0000e000 08:02 24521365 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/r2-filter-compression-27.0.18.jar 7f15bb1a0000-7f15bb1a5000 r--s 00044000 08:02 24521364 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/restli-client-27.0.18.jar 7f15bb1a5000-7f15bb1a6000 r--s 00014000 08:02 24521363 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/okio-1.14.0.jar 7f15bb1a6000-7f15bb1f6000 r--s 0034d000 08:02 24521362 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/models-data-template-25.0.169.jar 7f15bb1f6000-7f15bb1fc000 r--s 00045000 08:02 24521361 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/commons-httpclient-3.1.jar 7f15bb1fc000-7f15bb1fd000 r--s 00008000 08:02 24521360 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/li-jersey-uri-27.0.18.jar 7f15bb1fd000-7f15bb206000 r--s 0006d000 08:02 24521359 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/log4j-1.2.16.jar 7f15bb206000-7f15bb207000 r--s 00002000 08:02 24521358 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/shared-spec-0.3.8.jar 7f15bb207000-7f15bb228000 r--s 000f1000 08:02 24521357 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/jxbrowser-6.20.jar 7f15bb228000-7f15bb22a000 r--s 00005000 08:02 24521356 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/pegasus-common-27.0.18.jar 7f15bb22a000-7f15bb231000 r--s 0004b000 08:02 24521355 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/restli-common-27.0.18.jar 7f15bb231000-7f15bb232000 r--s 00000000 08:02 24521354 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/updog-8.0.1.jar 7f15bb232000-7f15bb234000 r--s 00013000 08:02 24521353 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/jackson-dataformat-smile-2.9.7.jar 7f15bb234000-7f15bb237000 r--s 00026000 08:02 24521352 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/antlr-runtime-3.5.2.jar 7f15bb237000-7f15bb239000 r--s 00001000 08:02 24521351 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/r2-disruptor-27.0.18.jar 7f15bb239000-7f15bb23c000 r--s 00015000 08:02 24521350 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/javax.servlet-api-3.1.0.jar 7f15bb23c000-7f15bb255000 r--s 0011d000 08:02 24521349 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/listudio-9.3.0.jar 7f15bb255000-7f15bb292000 r--s 00322000 08:02 24521348 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/netty-all-4.1.6.Final.jar 7f15bb292000-7f15bb293000 r--s 00000000 08:02 24521347 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/searchableOptions-9.3.0.jar 7f15bb293000-7f15bb295000 r--s 0000d000 08:02 24521346 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/snappy-0.4.jar 7f15bb295000-7f15bb297000 r--s 00000000 08:02 24521345 /home/broberts/.IntelliJIdeaLI13/config/plugins/listudio/lib/converter-jackson-2.1.0.1.jar 7f15bb297000-7f15bb367000 r--s 02021000 08:02 24521341 /home/broberts/.IntelliJIdeaLI13/config/plugins/python/lib/python.jar 7f15bb367000-7f15bb369000 r--s 0001b000 08:02 24521340 /home/broberts/.IntelliJIdeaLI13/config/plugins/python/lib/Java-WebSocket-1.3.9.jar 7f15bb369000-7f15bb36f000 r--s 00035000 08:02 24521339 /home/broberts/.IntelliJIdeaLI13/config/plugins/python/lib/libthrift-0.11.0.jar 7f15bb36f000-7f15bb370000 r--s 00000000 08:02 11414402 /export/apps/xtools/LNKD-intellij-2019.1/plugins/remote-run/lib/resources_en.jar 7f15bb370000-7f15bb376000 r--s 000b5000 08:02 11414401 /export/apps/xtools/LNKD-intellij-2019.1/plugins/remote-run/lib/remote-run.jar 7f15bb376000-7f15bb379000 r--s 00024000 08:02 24511265 /home/broberts/.IntelliJIdeaLI13/config/plugins/intellij-go/lib/profiler-191.7141.44.205.jar 7f15bb379000-7f15bb37c000 r--s 0000e000 08:02 24511259 /home/broberts/.IntelliJIdeaLI13/config/plugins/intellij-go/lib/plan9-191.7141.44.205.jar 7f15bb37c000-7f15bb37d000 r--s 00001000 08:02 24511258 /home/broberts/.IntelliJIdeaLI13/config/plugins/intellij-go/lib/searchableOptions-191.7141.44.205.jar 7f15bb37d000-7f15bb37f000 r--s 00007000 08:02 24511251 /home/broberts/.IntelliJIdeaLI13/config/plugins/intellij-go/lib/template-integration-191.7141.44.205.jar 7f15bb37f000-7f15bb381000 r--s 0000e000 08:02 24511250 /home/broberts/.IntelliJIdeaLI13/config/plugins/intellij-go/lib/toml4j-0.7.2.jar 7f15bb381000-7f15bb384000 r--s 0001f000 08:02 24511243 /home/broberts/.IntelliJIdeaLI13/config/plugins/intellij-go/lib/vgo-191.7141.44.205.jar 7f15bb384000-7f15bb386000 r--s 00002000 08:02 24511242 /home/broberts/.IntelliJIdeaLI13/config/plugins/intellij-go/lib/go-testing-191.7141.44.205.jar 7f15bb386000-7f15bb3c7000 r--s 00489000 08:02 24511236 /home/broberts/.IntelliJIdeaLI13/config/plugins/intellij-go/lib/intellij-go-191.7141.44.205.jar 7f15bb3c7000-7f15bb3c8000 r--s 00001000 08:02 24511235 /home/broberts/.IntelliJIdeaLI13/config/plugins/intellij-go/lib/go-utils-191.7141.44.205.jar 7f15bb3c8000-7f15bb3c9000 r--s 00006000 08:02 24642272 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/scalatest-finders-patched-0.9.9.jar 7f15bb3c9000-7f15bb3cf000 r--s 00080000 08:02 24642270 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/scala-xml.jar 7f15bb3cf000-7f15bb3e5000 r--s 00124000 08:02 24642266 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/ivy-2.4.0.jar 7f15bb3e5000-7f15bb3e6000 r--s 00000000 08:02 24642265 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/util-interface-1.1.2.jar 7f15bb3e6000-7f15bb55f000 r--s 01384000 08:02 24642263 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/scalaUltimate.jar 7f15bb55f000-7f15bb562000 r--s 00016000 08:02 24642258 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/scala-play-2-jps-plugin.jar 7f15bb562000-7f15bb599000 r--s 004d2000 08:02 24642257 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/scala-library.jar 7f15bb599000-7f15bb59b000 r--s 0000b000 08:02 24642255 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/org.eclipse.lsp4j.generator-0.5.0.jar 7f15bb59b000-7f15bb59e000 r--s 00031000 08:02 24642250 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/scala-parser-combinators_2.12-1.0.6.jar 7f15bb59e000-7f15bb5c1000 r--s 00350000 08:02 24642249 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/scala-reflect.jar 7f15bb5c1000-7f15bb5c3000 r--s 00004000 08:02 24642246 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/ipcsocket-1.0.0.jar 7f15bb5c3000-7f15bb5ce000 r--s 00128000 08:02 24642241 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/scalariform_2.12-0.2.2.jar 7f15bb5ce000-7f15bb5d3000 r--s 00041000 08:02 24642240 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/commons-lang-2.6.jar 7f15bb5d3000-7f15bb5da000 r--s 000a3000 08:02 24642238 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/scalastyle_2.12-1.0.0.jar 7f15bb5da000-7f15bb5de000 r--s 00020000 08:02 24642234 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/compiler-shared.jar 7f15bb5de000-7f15bb5e0000 r--s 00019000 08:02 24642233 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/sourcecode_2.12-0.1.3.jar 7f15bb5e0000-7f15bb5e3000 r--s 0001b000 08:02 24642230 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/org.eclipse.lsp4j.jsonrpc-0.5.0.jar 7f15bb5e3000-7f15bb5e7000 r--s 0000f000 08:02 24642226 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/org.eclipse.xtend.lib.macro-2.18.0.M2.jar 7f15bb5e7000-7f15bb5f2000 r--s 00099000 08:02 24642225 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/bcel-6.0.jar 7f15bb5f2000-7f15bb5f7000 r--s 00031000 08:02 24642192 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/config-1.2.0.jar 7f15bb5f7000-7f15bb650000 r--s 00565000 08:02 24642191 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/scalameta.jar 7f15bb650000-7f15bb653000 r--s 00015000 08:02 24642188 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/bsp4j-2.0.0-M4.jar 7f15bb653000-7f15bb655000 r--s 0001b000 08:02 24642184 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/scala-compiler-indices-protocol_2.12-0.1.1.jar 7f15bb655000-7f15bb657000 r--s 0001b000 08:02 24642183 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/scala-compiler-indices-protocol_2.12-0.1.0.jar 7f15bb657000-7f15bb659000 r--s 00000000 08:02 24642180 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/scala-nailgun-runner.jar 7f15bb659000-7f15bb65b000 r--s 00002000 08:02 24642176 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/evo-inflector-1.2.jar 7f15bb65b000-7f15bb65d000 r--s 00018000 08:02 24642175 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/org.eclipse.xtend.lib-2.18.0.M2.jar 7f15bb65d000-7f15bb661000 r--s 0004c000 08:02 24642170 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/fastparse_2.12-0.4.3.jar 7f15bb661000-7f15bb664000 r--s 00043000 08:02 24641856 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/spray-json_2.12-1.3.4.jar 7f15bb664000-7f15bb666000 r--s 00004000 08:02 24641855 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/jamm-0.3.1.jar 7f15bb666000-7f15bb669000 r--s 0002c000 08:02 24641854 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/sbt-structure-core_2.12-2018.2.1+4-88400d3f.jar 7f15bb669000-7f15bb66d000 r--s 00023000 08:02 24641853 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/org.eclipse.xtext.xbase.lib-2.18.0.M2.jar 7f15bb66d000-7f15bb673000 r--s 00040000 08:02 24641852 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/scalap.jar 7f15bb673000-7f15bb677000 r--s 0001a000 08:02 24641851 /home/broberts/.IntelliJIdeaLI13/config/plugins/Scala/lib/runners.jar 7f15bb677000-7f15bb67b000 r--s 0003a000 08:02 12068832 /export/apps/xtools/LNKD-intellij-2019.1/plugins/struts2/lib/ognl.jar 7f15bb67b000-7f15bb685000 r--s 0010a000 08:02 12068834 /export/apps/xtools/LNKD-intellij-2019.1/plugins/struts2/lib/struts2-plugin.jar 7f15bb685000-7f15bb688000 r--s 00025000 08:02 12068833 /export/apps/xtools/LNKD-intellij-2019.1/plugins/struts2/lib/struts2-dom-api.jar 7f15bb688000-7f15bb68b000 r--s 0000e000 08:02 9971746 /export/apps/xtools/LNKD-intellij-2019.1/plugins/GwtStudio/lib/resources_en.jar 7f15bb68b000-7f15bb68c000 r--s 00000000 08:02 9971747 /export/apps/xtools/LNKD-intellij-2019.1/plugins/GwtStudio/lib/runtime.jar 7f15bb68c000-7f15bb6a2000 r--s 0033d000 08:02 9971744 /export/apps/xtools/LNKD-intellij-2019.1/plugins/GwtStudio/lib/GwtStudio.jar 7f15bb6a2000-7f15bb6a5000 r--s 00034000 08:02 9971745 /export/apps/xtools/LNKD-intellij-2019.1/plugins/GwtStudio/lib/gwt-jps-plugin.jar 7f15bb6a5000-7f15bb6a7000 r--s 00000000 08:02 9980530 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/spantable.jar 7f15bb6a7000-7f15bb6ae000 r--s 00051000 08:02 9980509 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/org.eclipse.emf.common-2.12.0.jar 7f15bb6ae000-7f15bb6af000 r--s 00004000 08:02 9972266 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/asm-analysis-5.0.3.jar 7f15bb6af000-7f15bb6ba000 r--s 0009f000 08:02 9980518 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/sdklib-26.3.0.jar 7f15bb6ba000-7f15bb6bb000 r--s 00006000 08:02 9980532 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/tracker-26.3.0.jar 7f15bb6bb000-7f15bb6bc000 r--s 00009000 08:02 9980515 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/resources_en.jar 7f15bb6bc000-7f15bb6bd000 r--s 00000000 08:02 9980499 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/libwebp.jar 7f15bb6bd000-7f15bb6bf000 r--s 00002000 08:02 9972504 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/instantapps-api-1.5.jar 7f15bb6bf000-7f15bb6cb000 r--s 00189000 08:02 9980501 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/lint-checks-26.3.0.jar 7f15bb6cb000-7f15bb6cf000 r--s 0004d000 08:02 9972253 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/android-extensions-ide.jar 7f15bb6cf000-7f15bb6d3000 r--s 00032000 08:02 9972273 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/common-26.3.0.jar 7f15bb6d3000-7f15bb6d4000 r--s 00003000 08:02 9972272 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/builder-test-api-3.3.0.jar 7f15bb6d4000-7f15bb6d5000 r--s 0000b000 08:02 9980519 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/shared-26.3.0.jar 7f15bb6d5000-7f15bb720000 r--s 002ff000 08:02 9972269 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/bcprov-jdk15on-1.56.jar 7f15bb720000-7f15bb721000 r--s 0000c000 08:02 9972265 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/asm-5.0.3.jar 7f15bb721000-7f15bb724000 r--s 0002f000 08:02 9980502 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/manifest-merger-26.3.0.jar 7f15bb724000-7f15bb770000 r--s 00782000 08:02 9972264 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/artwork.jar 7f15bb770000-7f15bb782000 r--s 00111000 08:02 9980510 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/org.eclipse.emf.ecore-2.12.0.jar 7f15bb782000-7f15bb79a000 r--s 0013c000 08:02 9980516 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/sdk-common-26.3.0.jar 7f15bb79a000-7f15bb79d000 r--s 00019000 08:02 9972512 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/layoutlib-api-26.3.0.jar 7f15bb79d000-7f15bb7ae000 r--s 000e8000 08:02 9972503 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/freemarker-2.3.20.jar 7f15bb7ae000-7f15bb9a0000 r--s 01721000 08:02 9972276 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/d8-master.jar 7f15bb9a0000-7f15bb9ab000 r--s 000b6000 08:02 9972507 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/jgraphx-3.4.1.3.jar 7f15bb9ab000-7f15bb9cc000 r--s 001e3000 08:02 9980504 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/nosyncbuilder-jarjar.jar 7f15bb9cc000-7f15bb9cf000 r--s 00038000 08:02 9972270 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/build-common.jar 7f15bb9cf000-7f15bb9db000 r--s 00148000 08:02 9980517 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/sdk-tools.jar 7f15bb9db000-7f15bb9e1000 r--s 00050000 08:02 9972278 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/ddmlib-26.3.0.jar 7f15bb9e1000-7f15bb9e7000 r--s 000ef000 08:02 9980512 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/pixelprobe.jar 7f15bb9e7000-7f15bb9ea000 r--s 00008000 08:02 9972271 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/builder-model-3.3.0.jar 7f15bb9ea000-7f15bb9ec000 r--s 0000d000 08:02 9980511 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/pepk.jar 7f15bb9ec000-7f15bb9ed000 r--s 00003000 08:02 9972505 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/jarutils.jar 7f15bb9ed000-7f15bb9fe000 r--s 00097000 08:02 9972268 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/bcpkix-jdk15on-1.56.jar 7f15bb9fe000-7f15bba01000 r--s 0001e000 08:02 9980503 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/moshi-1.6.0.jar 7f15bba01000-7f15bbb62000 r--s 01d0b000 08:02 9972514 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/layoutlib.jar 7f15bbb62000-7f15bbb63000 r--s 00020000 08:02 9972252 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/android-common.jar 7f15bbb63000-7f15bbb64000 r--s 00002000 08:02 9972506 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/javawriter-2.2.1.jar 7f15bbb64000-7f15bbb6f000 r--s 000dd000 08:02 9980506 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/org.eclipse.elk.alg.layered-0.3.0.jar 7f15bbb6f000-7f15bbb74000 r--s 00024000 08:02 9972259 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/androidAnnotations.jar 7f15bbb74000-7f15bbb76000 r--s 00006000 08:02 9972267 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/asm-tree-5.0.3.jar 7f15bbb76000-7f15bbb7c000 r--s 00031000 08:02 9980514 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/repository-26.3.0.jar 7f15bbb7c000-7f15bbb80000 r--s 00079000 08:02 9972254 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/android-kotlin.jar 7f15bbb80000-7f15bbb82000 r--s 00005000 08:02 9980497 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/libdeploy_java_proto.jar 7f15bbb82000-7f15bbd0e000 r--s 030b7000 08:02 9972258 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/android.jar 7f15bbd0e000-7f15bbd29000 r--s 00272000 08:02 9980513 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/protos-26.3.0.jar 7f15bbd29000-7f15bbda2000 r--s 00793000 08:02 9980531 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/studio-profiler-grpc-1.0-jarjar.jar 7f15bbda2000-7f15bc000000 r--s 01fcb000 08:02 9972109 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/kotlin-plugin.jar 7f15bc000000-7f15bc021000 rw-p 00000000 00:00 0 7f15bc021000-7f15c0000000 ---p 00000000 00:00 0 7f15c0000000-7f15c0021000 rw-p 00000000 00:00 0 7f15c0021000-7f15c4000000 ---p 00000000 00:00 0 7f15c4000000-7f15c4031000 rw-p 00000000 00:00 0 7f15c4031000-7f15c8000000 ---p 00000000 00:00 0 7f15c8000000-7f15ca3c0000 rw-p 00000000 00:00 0 7f15ca3c0000-7f15cc000000 ---p 00000000 00:00 0 7f15cc000000-7f15cc064000 rw-p 00000000 00:00 0 7f15cc064000-7f15d0000000 ---p 00000000 00:00 0 7f15d0000000-7f15d0122000 rw-p 00000000 00:00 0 7f15d0122000-7f15d4000000 ---p 00000000 00:00 0 7f15d4000000-7f15d5103000 rw-p 00000000 00:00 0 7f15d5103000-7f15d8000000 ---p 00000000 00:00 0 7f15d8000000-7f15d809a000 rw-p 00000000 00:00 0 7f15d809a000-7f15dc000000 ---p 00000000 00:00 0 7f15dc000000-7f15ddb1c000 rw-p 00000000 00:00 0 7f15ddb1c000-7f15e0000000 ---p 00000000 00:00 0 7f15e0000000-7f15e010f000 rw-p 00000000 00:00 0 7f15e010f000-7f15e4000000 ---p 00000000 00:00 0 7f15e4000000-7f15e40f4000 rw-p 00000000 00:00 0 7f15e40f4000-7f15e8000000 ---p 00000000 00:00 0 7f15e8000000-7f15e802e000 rw-p 00000000 00:00 0 7f15e802e000-7f15ec000000 ---p 00000000 00:00 0 7f15ec000000-7f15ec021000 rw-p 00000000 00:00 0 7f15ec021000-7f15f0000000 ---p 00000000 00:00 0 7f15f0000000-7f15f0137000 rw-p 00000000 00:00 0 7f15f0137000-7f15f4000000 ---p 00000000 00:00 0 7f15f4000000-7f15f4023000 rw-p 00000000 00:00 0 7f15f4023000-7f15f8000000 ---p 00000000 00:00 0 7f15f8000000-7f15f8021000 rw-p 00000000 00:00 0 7f15f8021000-7f15fc000000 ---p 00000000 00:00 0 7f15fc000000-7f15fc021000 rw-p 00000000 00:00 0 7f15fc021000-7f1600000000 ---p 00000000 00:00 0 7f1600000000-7f1600001000 r--s 00003000 08:02 9972275 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/crash-26.3.0.jar 7f1600001000-7f1600002000 r--s 00001000 08:02 9972262 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/annotations-26.3.0.jar 7f1600002000-7f1600004000 r--s 00002000 08:02 9972256 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/android-rt.jar 7f1600004000-7f1600005000 r--s 00014000 08:02 9980505 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/okio-1.14.0.jar 7f1600005000-7f160000f000 r--s 000cc000 08:02 9980500 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/lint-api-26.3.0.jar 7f160000f000-7f1600016000 r--s 00053000 08:02 9972274 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/commons-compress-1.8.1.jar 7f1600016000-7f1600027000 r--s 001c6000 08:02 9972251 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/adt-ui.jar 7f1600027000-7f1600028000 r--s 00000000 08:02 9980498 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/libjava_version.jar 7f1600028000-7f160002a000 r--s 00018000 08:02 9980508 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/org.eclipse.elk.graph-0.3.0.jar 7f160002a000-7f160002d000 r--s 00016000 08:02 9972263 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/apkanalyzer-26.3.0.jar 7f160002d000-7f160002f000 r--s 00037000 08:02 9972257 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/android-ultimate.jar 7f160002f000-7f1600030000 r--s 0000a000 08:02 9972510 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/kxml2-2.3.0.jar 7f1600030000-7f1600031000 r--s 00008000 08:02 9972513 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/layoutlib-loader.jar 7f1600031000-7f1600037000 r--s 00064000 08:02 9980507 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/org.eclipse.elk.core-0.3.0.jar 7f1600037000-7f160004d000 r--s 003ba000 08:02 9972255 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/android-profilers.jar 7f160004d000-7f160005f000 r--s 00528000 08:02 9972277 /export/apps/xtools/LNKD-intellij-2019.1/plugins/android/lib/data-binding.jar 7f160005f000-7f1600065000 r--s 0005a000 08:02 9972129 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/markdown-0.1.25.jar 7f1600065000-7f1600066000 r--s 00000000 08:02 9972098 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/javax.inject-1.jar 7f1600066000-7f160006a000 r--s 00018000 08:02 9972115 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/kotlin-scripting-common.jar 7f160006a000-7f160006c000 r--s 00010000 08:02 9972107 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/kotlin-gradle-tooling.jar 7f160006c000-7f160006d000 r--s 00000000 08:02 9972089 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/android-extensions-ide.jar 7f160006d000-7f1600079000 r--s 000a4000 08:02 9972095 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/j2k.jar 7f1600079000-7f160009b000 r--s 0018f000 08:02 9972102 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/jvm-ide.jar 7f160009b000-7f160009d000 r--s 00004000 08:02 9972131 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/noarg-ide-plugin.jar 7f160009d000-7f160009f000 r--s 0000e000 08:02 9972120 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/kotlin-scripting-jvm.jar 7f160009f000-7f16000a0000 r--s 00001000 08:02 9972117 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/kotlin-scripting-idea.jar 7f16000a0000-7f16000ac000 r--s 000a6000 08:02 9972091 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/android-lint.jar 7f16000ac000-7f16000ae000 r--s 00003000 08:02 9972093 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/annotations-13.0.jar 7f16000ae000-7f16000b0000 r--s 00002000 08:02 9972126 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/kotlinx-coroutines-jdk8-1.0.1.jar 7f16000b0000-7f16000b7000 r--s 0008f000 08:02 9972096 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/javaslang-2.0.6.jar 7f16000b7000-7f16000be000 r--s 0001f000 08:02 9972121 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/kotlin-stdlib-common.jar 7f16000be000-7f16000c6000 r--s 0004d000 08:02 9972088 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/android-extensions-compiler.jar 7f16000c6000-7f16000ce000 r--s 0005c000 08:02 9972127 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/kotlinx-serialization-compiler-plugin.jar 7f16000ce000-7f16000cf000 r--s 00000000 08:02 9972094 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/idea-git.jar 7f16000cf000-7f16000d1000 r--s 00005000 08:02 9972097 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/javaslang-match-2.0.6.jar 7f16000d1000-7f16000d4000 r--s 00017000 08:02 9972100 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/jps-common-ide.jar 7f16000d4000-7f16000d6000 r--s 00002000 08:02 9972104 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/kotlin-allopen-compiler-plugin.jar 7f16000d6000-7f16000e2000 r--s 000b4000 08:02 9972125 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/kotlinx-coroutines-core-1.0.1.jar 7f16000e2000-7f16000e3000 r--s 00000000 08:02 9972090 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/android-ide.jar 7f16000e3000-7f16000ec000 r--s 00085000 08:02 9972106 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/kotlin-daemon-client.jar 7f16000ec000-7f16000ee000 r--s 00005000 08:02 9972128 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/kotlinx-serialization-ide-plugin.jar 7f16000ee000-7f16000fd000 r--s 000c6000 08:02 9972105 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/kotlin-compiler-client-embeddable.jar 7f16000fd000-7f1600134000 r--s 00255000 08:02 9972110 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/kotlin-reflect.jar 7f1600134000-7f1600147000 r--s 0010f000 08:02 9972124 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/kotlin-stdlib.jar 7f1600147000-7f1600191000 r--s 00bc3000 08:02 9971782 /export/apps/xtools/LNKD-intellij-2019.1/plugins/JavaEE/lib/javaee-impl.jar 7f1600191000-7f1600403000 r--s 01914000 08:02 11414144 /export/apps/xtools/LNKD-intellij-2019.1/plugins/gradle/lib/gradle-api-impldep-4.10.3.jar 7f1600403000-7f160055e000 r--s 00bb0000 08:02 11414143 /export/apps/xtools/LNKD-intellij-2019.1/plugins/gradle/lib/gradle-api-4.10.3.jar 7f160055e000-7f1600700000 r--s 042a2000 08:02 9966450 /export/apps/xtools/LNKD-intellij-2019.1/plugins/DatabaseTools/lib/database-impl.jar 7f1600700000-7f1600900000 rw-p 00000000 00:00 0 7f1600900000-7f160096c000 r-xp 00000000 08:02 11017707 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libt2k.so 7f160096c000-7f1600b6c000 ---p 0006c000 08:02 11017707 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libt2k.so 7f1600b6c000-7f1600b72000 r--p 0006c000 08:02 11017707 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libt2k.so 7f1600b72000-7f1600b73000 rw-p 00072000 08:02 11017707 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libt2k.so 7f1600b73000-7f1600b74000 r--s 00000000 08:02 9972118 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/kotlin-scripting-intellij.jar 7f1600b74000-7f1600b75000 r--s 00002000 08:02 9972111 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/kotlin-sam-with-receiver-compiler-plugin.jar 7f1600b75000-7f1600b76000 r--s 00002000 08:02 9972119 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/kotlin-scripting-jvm-sources.jar 7f1600b76000-7f1600b7a000 r--s 00031000 08:02 9972130 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/maven-ide.jar 7f1600b7a000-7f1600b7b000 r--s 00004000 08:02 9972132 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/sam-with-receiver-ide-plugin.jar 7f1600b7b000-7f1600b7d000 r--s 00004000 08:02 9972103 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/kapt3-idea.jar 7f1600b7d000-7f1600b7f000 r--s 00002000 08:02 9972123 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/kotlin-stdlib-jdk8.jar 7f1600b7f000-7f1600b81000 r--s 00010000 08:02 9972113 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/kotlin-script-util.jar 7f1600b81000-7f1600b82000 r--s 00000000 08:02 9972122 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/kotlin-stdlib-jdk7.jar 7f1600b82000-7f1600b85000 r--s 00012000 08:02 9972116 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/kotlin-scripting-compiler.jar 7f1600b85000-7f1600b86000 r--s 00004000 08:02 9972087 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/allopen-ide-plugin.jar 7f1600b86000-7f1600b87000 r--s 00005000 08:02 9972108 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/kotlin-noarg-compiler-plugin.jar 7f1600b87000-7f1600b89000 r--s 00009000 08:02 9972112 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/kotlin-script-runtime.jar 7f1600b89000-7f1600b8b000 r--s 00003000 08:02 9972114 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/kotlin-scripting-common-sources.jar 7f1600b8b000-7f1600b8c000 r--s 00000000 08:02 9972092 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Kotlin/lib/android-output-parser-ide.jar 7f1600b8c000-7f1600b93000 r--s 00033000 08:02 9971788 /export/apps/xtools/LNKD-intellij-2019.1/plugins/JavaEE/lib/resources_en.jar 7f1600b93000-7f1600b95000 r--s 0000c000 08:02 9971792 /export/apps/xtools/LNKD-intellij-2019.1/plugins/JavaEE/lib/webDeployment-transport.jar 7f1600b95000-7f1600b98000 r--s 00036000 08:02 9971783 /export/apps/xtools/LNKD-intellij-2019.1/plugins/JavaEE/lib/javaee-jps-plugin.jar 7f1600b98000-7f1600ba9000 r--s 00104000 08:02 9971784 /export/apps/xtools/LNKD-intellij-2019.1/plugins/JavaEE/lib/javaee-openapi.jar 7f1600ba9000-7f1600bab000 r--s 00021000 08:02 9971780 /export/apps/xtools/LNKD-intellij-2019.1/plugins/JavaEE/lib/gradle-javaee.jar 7f1600bab000-7f1600bad000 r--s 0000d000 08:02 9971785 /export/apps/xtools/LNKD-intellij-2019.1/plugins/JavaEE/lib/jpa-console.jar 7f1600bad000-7f1600baf000 r--s 00007000 08:02 9971781 /export/apps/xtools/LNKD-intellij-2019.1/plugins/JavaEE/lib/jasper-v2-rt.jar 7f1600baf000-7f1600bb1000 r--s 00000000 08:02 11414154 /export/apps/xtools/LNKD-intellij-2019.1/plugins/gradle/lib/minlog-1.2.jar 7f1600bb1000-7f1600bbe000 r--s 00068000 08:02 11414148 /export/apps/xtools/LNKD-intellij-2019.1/plugins/gradle/lib/gradle-launcher-4.10.3.jar 7f1600bbe000-7f1600c41000 r--s 00fe0000 08:02 9971722 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Groovy/lib/Groovy.jar 7f1600c41000-7f1600c42000 r-xp 00000000 08:02 11017755 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libjawt.so 7f1600c42000-7f1600e41000 ---p 00001000 08:02 11017755 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libjawt.so 7f1600e41000-7f1600e42000 r--p 00000000 08:02 11017755 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libjawt.so 7f1600e42000-7f1600e43000 rw-p 00001000 08:02 11017755 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libjawt.so 7f1600e43000-7f1601043000 rw-p 00000000 00:00 0 7f1601048000-7f160104a000 rw-p 00000000 00:00 0 7f160104c000-7f160105a000 rw-p 00000000 00:00 0 7f160105a000-7f160105b000 rw-s 845200000 00:05 29980 /dev/nvidiactl 7f160105b000-7f160105e000 rw-p 00000000 00:00 0 7f1601068000-7f160106d000 r--s 000a5000 08:02 8650973 /home/broberts/.gradle/caches/modules-2/files-2.1/joda-time/joda-time/2.0/409a13768c666761c9efb41560e75464cbcd0b5b/joda-time-2.0-sources.jar 7f160106d000-7f1601072000 r--s 00022000 08:02 8650940 /home/broberts/.gradle/caches/modules-2/files-2.1/com.linkedin.formatters-spec/formatters-spec/1.1.12/60ee37d7c8fd6cb3c0574b46227872cdd794fd4c/formatters-spec-1.1.12.jar 7f1601072000-7f1601077000 r--s 00022000 08:02 8650972 /home/broberts/.gradle/caches/modules-2/files-2.1/com.linkedin.formatters-spec/formatters-spec/1.1.12/4b77f7e3c7b959f3bdebe79ab97b388fbf038521/formatters-spec-1.1.12-sources.jar 7f160107a000-7f160107c000 rw-s 00000000 08:02 8651109 /tmp/.glcaaqNV (deleted) 7f1601088000-7f160108b000 r--s 0002e000 08:02 8651025 /home/broberts/.gradle/caches/modules-2/files-2.1/org.eclipse.jetty.orbit/javax.servlet/3.0.0.v201112011016/aaaa85845fb5c59da00193f06b8e5278d8bf3f8/javax.servlet-3.0.0.v201112011016.jar 7f160108b000-7f1601093000 r--s 00059000 08:02 8653417 /home/broberts/.gradle/caches/modules-2/files-2.1/org.springframework/spring-test/4.1.1.RELEASE/2e88d8a990e5f1ffa93b3e2a83ba9535b562aabd/spring-test-4.1.1.RELEASE-sources.jar 7f1601093000-7f1601095000 rw-p 00000000 00:00 0 7f1601096000-7f160109a000 rw-p 00000000 00:00 0 7f160109c000-7f160109e000 rw-p 00000000 00:00 0 7f160109f000-7f16010a2000 r--s 00023000 08:02 8660155 /home/broberts/.gradle/caches/modules-2/files-2.1/com.azul.zing/ZingJMM/zing-jdk1.8.0-18.10.3.0-1.x86_64/6dfaf280171aa9f1b407a0a6ca1c9cc719a6188a/ZingJMM-zing-jdk1.8.0-18.10.3.0-1.x86_64.jar 7f16010a2000-7f16010a3000 rw-p 00000000 00:00 0 7f16010a5000-7f16010a6000 rw-p 00000000 00:00 0 7f16010a6000-7f16010ab000 r--s 00084000 08:02 11017636 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/jfr.jar 7f16010ad000-7f16010b0000 rw-p 00000000 00:00 0 7f16010b0000-7f16010c3000 rw-s 819b8a000 00:05 29980 /dev/nvidiactl 7f16010c3000-7f16010c4000 rw-s 842b81000 00:05 29980 /dev/nvidiactl 7f16010c4000-7f16010c8000 rw-s e9c341000 00:05 29980 /dev/nvidiactl 7f16010c8000-7f16010c9000 rw-p 00000000 00:00 0 7f16010c9000-7f16010ca000 rw-s efde3000 00:05 20200 /dev/nvidia0 7f16010ca000-7f16010cb000 rw-s f2060000 00:05 20200 /dev/nvidia0 7f16010cb000-7f16010cc000 rw-s efde3000 00:05 20200 /dev/nvidia0 7f16010cc000-7f16010cd000 r--s 00000000 08:02 24511439 /home/broberts/.IntelliJIdeaLI13/config/plugins/CheckStyle-IDEA/checkstyle/lib/animal-sniffer-annotations-1.14.jar 7f16010cd000-7f16010cf000 r--s 00001000 08:02 24511577 /home/broberts/.IntelliJIdeaLI13/config/plugins/CheckStyle-IDEA/checkstyle/lib/j2objc-annotations-1.1.jar 7f16010cf000-7f16010d0000 r--s 00002000 08:02 24511479 /home/broberts/.IntelliJIdeaLI13/config/plugins/CheckStyle-IDEA/checkstyle/lib/error_prone_annotations-2.0.18.jar 7f16010d0000-7f16010d3000 r--s 00006000 08:02 24511458 /home/broberts/.IntelliJIdeaLI13/config/plugins/CheckStyle-IDEA/checkstyle/lib/jsr305-1.3.9.jar 7f16010d3000-7f16010e0000 r--s 00083000 08:02 24511484 /home/broberts/.IntelliJIdeaLI13/config/plugins/CheckStyle-IDEA/checkstyle/lib/commons-collections-3.2.2.jar 7f16010e0000-7f1601110000 r--s 00245000 08:02 24511497 /home/broberts/.IntelliJIdeaLI13/config/plugins/CheckStyle-IDEA/checkstyle/lib/guava-22.0.jar 7f1601110000-7f1601112000 r--s 0000c000 08:02 24511305 /home/broberts/.IntelliJIdeaLI13/config/plugins/CheckStyle-IDEA/checkstyle/lib/commons-cli-1.4.jar 7f1601112000-7f1601117000 r--s 00038000 08:02 24511438 /home/broberts/.IntelliJIdeaLI13/config/plugins/CheckStyle-IDEA/checkstyle/lib/commons-beanutils-1.9.3.jar 7f1601117000-7f160111d000 r--s 0004c000 08:02 24511586 /home/broberts/.IntelliJIdeaLI13/config/plugins/CheckStyle-IDEA/checkstyle/lib/antlr4-runtime-4.7.jar 7f160111d000-7f1601122000 r--s 00068000 08:02 24511447 /home/broberts/.IntelliJIdeaLI13/config/plugins/CheckStyle-IDEA/checkstyle/lib/antlr-2.7.7.jar 7f1601122000-7f1601137000 r--s 00118000 08:02 24511579 /home/broberts/.IntelliJIdeaLI13/config/plugins/CheckStyle-IDEA/checkstyle/lib/checkstyle-8.0.jar 7f1601137000-7f160113b000 rw-p 00000000 00:00 0 7f160113b000-7f160113d000 rw-p 00000000 00:00 0 7f160113d000-7f160113e000 r--s 00000000 08:02 9971779 /export/apps/xtools/LNKD-intellij-2019.1/plugins/JavaEE/lib/IntelliLang-javaee.jar 7f160113e000-7f160113f000 r--s 00004000 08:02 11414152 /export/apps/xtools/LNKD-intellij-2019.1/plugins/gradle/lib/gradle.jar 7f160113f000-7f1601149000 r--s 00145000 08:02 11414146 /export/apps/xtools/LNKD-intellij-2019.1/plugins/gradle/lib/gradle-java.jar 7f1601149000-7f1601153000 r--s 00167000 08:02 11414145 /export/apps/xtools/LNKD-intellij-2019.1/plugins/gradle/lib/gradle-common.jar 7f1601153000-7f1601156000 r--s 00011000 08:02 11414149 /export/apps/xtools/LNKD-intellij-2019.1/plugins/gradle/lib/gradle-tooling-extension-api.jar 7f1601156000-7f160115c000 r--s 0004d000 08:02 11414153 /export/apps/xtools/LNKD-intellij-2019.1/plugins/gradle/lib/kryo-2.24.0.jar 7f160115c000-7f160115f000 r--s 0001f000 08:02 11414147 /export/apps/xtools/LNKD-intellij-2019.1/plugins/gradle/lib/gradle-jps-plugin.jar 7f160115f000-7f1601163000 r--s 00082000 08:02 11414150 /export/apps/xtools/LNKD-intellij-2019.1/plugins/gradle/lib/gradle-tooling-extension-impl.jar 7f1601163000-7f1601165000 r--s 0000c000 08:02 11414151 /export/apps/xtools/LNKD-intellij-2019.1/plugins/gradle/lib/gradle-wrapper-4.10.3.jar 7f1601165000-7f160116b000 r--s 00275000 08:02 9966470 /export/apps/xtools/LNKD-intellij-2019.1/plugins/DatabaseTools/lib/resources_en.jar 7f160116b000-7f1601175000 r--s 00048000 08:02 9966452 /export/apps/xtools/LNKD-intellij-2019.1/plugins/DatabaseTools/lib/dekaf-single-2.0.0.390.jar 7f1601175000-7f160117b000 r--s 0009e000 08:02 9966468 /export/apps/xtools/LNKD-intellij-2019.1/plugins/DatabaseTools/lib/jdbc-console.jar 7f160117b000-7f1601187000 r--s 000b5000 08:02 9966451 /export/apps/xtools/LNKD-intellij-2019.1/plugins/DatabaseTools/lib/database-openapi.jar 7f1601187000-7f1601379000 rw-p 00000000 00:00 0 7f1601379000-7f1601387000 ---p 00000000 00:00 0 7f1601387000-7f16013e7000 r-xp 00000000 08:02 11017710 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libsplashscreen.so 7f16013e7000-7f16015e6000 ---p 00060000 08:02 11017710 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libsplashscreen.so 7f16015e6000-7f16015e7000 r--p 0005f000 08:02 11017710 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libsplashscreen.so 7f16015e7000-7f16015e8000 rw-p 00060000 08:02 11017710 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libsplashscreen.so 7f16015e8000-7f16017eb000 rw-p 00000000 00:00 0 7f16017eb000-7f16017ee000 ---p 00000000 00:00 0 7f16017ee000-7f16018ec000 rw-p 00000000 00:00 0 7f16018ec000-7f16018ef000 ---p 00000000 00:00 0 7f16018ef000-7f16019ed000 rw-p 00000000 00:00 0 7f16019ed000-7f16019f0000 ---p 00000000 00:00 0 7f16019f0000-7f1601aee000 rw-p 00000000 00:00 0 7f1601aee000-7f1601af3000 r-xp 00000000 08:02 11534945 /usr/lib64/libnss_dns-2.17.so 7f1601af3000-7f1601cf2000 ---p 00005000 08:02 11534945 /usr/lib64/libnss_dns-2.17.so 7f1601cf2000-7f1601cf3000 r--p 00004000 08:02 11534945 /usr/lib64/libnss_dns-2.17.so 7f1601cf3000-7f1601cf4000 rw-p 00005000 08:02 11534945 /usr/lib64/libnss_dns-2.17.so 7f1601cf4000-7f1601cf8000 r--s 00014000 08:02 9966577 /export/apps/xtools/LNKD-intellij-2019.1/plugins/DatabaseTools/lib/unidecode-0.0.7.jar 7f1601cf8000-7f1601cfa000 r--s 00006000 08:02 12068933 /export/apps/xtools/LNKD-intellij-2019.1/plugins/xpath/lib/resources_en.jar 7f1601cfa000-7f1601d0c000 r--s 0024a000 08:02 12068936 /export/apps/xtools/LNKD-intellij-2019.1/plugins/xpath/lib/xpath.jar 7f1601d0c000-7f1601f0c000 rw-p 00000000 00:00 0 7f1601f0c000-7f1601f0f000 ---p 00000000 00:00 0 7f1601f0f000-7f160200d000 rw-p 00000000 00:00 0 7f160200d000-7f1602010000 ---p 00000000 00:00 0 7f1602010000-7f160210e000 rw-p 00000000 00:00 0 7f160210e000-7f1602111000 ---p 00000000 00:00 0 7f1602111000-7f160220f000 rw-p 00000000 00:00 0 7f160220f000-7f1602212000 ---p 00000000 00:00 0 7f1602212000-7f1602310000 rw-p 00000000 00:00 0 7f1602310000-7f1602313000 ---p 00000000 00:00 0 7f1602313000-7f1602411000 rw-p 00000000 00:00 0 7f1602411000-7f1602414000 ---p 00000000 00:00 0 7f1602414000-7f1602512000 rw-p 00000000 00:00 0 7f1602512000-7f1602515000 ---p 00000000 00:00 0 7f1602515000-7f1602613000 rw-p 00000000 00:00 0 7f1602613000-7f1602616000 ---p 00000000 00:00 0 7f1602616000-7f1602714000 rw-p 00000000 00:00 0 7f1602714000-7f1602717000 ---p 00000000 00:00 0 7f1602717000-7f1602815000 rw-p 00000000 00:00 0 7f1602815000-7f1602818000 ---p 00000000 00:00 0 7f1602818000-7f1602916000 rw-p 00000000 00:00 0 7f1602916000-7f1602919000 ---p 00000000 00:00 0 7f1602919000-7f1602c17000 rw-p 00000000 00:00 0 7f1602c17000-7f1602c1a000 ---p 00000000 00:00 0 7f1602c1a000-7f1602d18000 rw-p 00000000 00:00 0 7f1602d18000-7f1602d1b000 ---p 00000000 00:00 0 7f1602d1b000-7f1603019000 rw-p 00000000 00:00 0 7f1603019000-7f1603043000 r-xp 00000000 08:02 11017742 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libdcpr.so 7f1603043000-7f1603242000 ---p 0002a000 08:02 11017742 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libdcpr.so 7f1603242000-7f1603243000 r--p 00029000 08:02 11017742 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libdcpr.so 7f1603243000-7f1603246000 rw-p 0002a000 08:02 11017742 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libdcpr.so 7f1603246000-7f1603446000 rw-p 00000000 00:00 0 7f1603446000-7f1603449000 ---p 00000000 00:00 0 7f1603449000-7f1603547000 rw-p 00000000 00:00 0 7f1603547000-7f160354a000 ---p 00000000 00:00 0 7f160354a000-7f1603848000 rw-p 00000000 00:00 0 7f1603848000-7f1603865000 r--s 00000000 08:02 11800791 /usr/share/mime/mime.cache 7f1603865000-7f1603866000 r--s 00000000 08:02 9971726 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Groovy/lib/duplicates-groovy.jar 7f1603866000-7f1603874000 r--p 00000000 08:02 13240081 /usr/share/fonts/abattis-cantarell/Cantarell-Regular.otf 7f1603874000-7f1603875000 r--s 00002000 08:02 11414378 /export/apps/xtools/LNKD-intellij-2019.1/plugins/osmorc/lib/org.osgi.namespace.contract-1.0.0.jar 7f1603875000-7f160388d000 r--s 0012d000 08:02 11414375 /export/apps/xtools/LNKD-intellij-2019.1/plugins/osmorc/lib/biz.aQute.repository-4.0.0.jar 7f160388d000-7f160388f000 r--s 00024000 08:02 11414382 /export/apps/xtools/LNKD-intellij-2019.1/plugins/osmorc/lib/osmorc-jps-plugin.jar 7f160388f000-7f160389d000 r--s 00064000 08:02 11414377 /export/apps/xtools/LNKD-intellij-2019.1/plugins/osmorc/lib/bundlor-all.jar 7f160389d000-7f160389f000 r--s 00000000 08:02 9972145 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Play/lib/resources_en.jar 7f160389f000-7f16038a5000 r--s 00088000 08:02 9972144 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Play/lib/play-support.jar 7f16038a5000-7f16038a7000 r--s 00009000 08:02 11414037 /export/apps/xtools/LNKD-intellij-2019.1/plugins/editorconfig/lib/resources_en.jar 7f16038a7000-7f16038bb000 r--s 001d9000 08:02 11414036 /export/apps/xtools/LNKD-intellij-2019.1/plugins/editorconfig/lib/editorconfig.jar 7f16038bb000-7f16038bc000 r--s 00003000 08:02 11414035 /export/apps/xtools/LNKD-intellij-2019.1/plugins/editorconfig/lib/editorconfig-core-java.jar 7f16038bc000-7f16038bd000 r--s 00006000 08:02 11414168 /export/apps/xtools/LNKD-intellij-2019.1/plugins/hg4idea/lib/resources_en.jar 7f16038bd000-7f16038c7000 r--s 0016a000 08:02 11414167 /export/apps/xtools/LNKD-intellij-2019.1/plugins/hg4idea/lib/hg4idea.jar 7f16038c7000-7f16038c8000 r--s 0000f000 08:02 12068893 /export/apps/xtools/LNKD-intellij-2019.1/plugins/uiDesigner/lib/resources_en.jar 7f16038c8000-7f16038e0000 r--s 00329000 08:02 12068894 /export/apps/xtools/LNKD-intellij-2019.1/plugins/uiDesigner/lib/uiDesigner.jar 7f16038e0000-7f16038e1000 r--s 00013000 08:02 24511906 /home/broberts/.IntelliJIdeaLI13/config/plugins/Environment Variable Settings Summary/lib/environment-variable-settings-summary-intellij-plugin-0.0.4.jar 7f16038e1000-7f16038e2000 r--s 00000000 08:02 24511888 /home/broberts/.IntelliJIdeaLI13/config/plugins/Environment Variable Settings Summary/lib/searchableOptions-0.0.4.jar 7f16038e2000-7f16038e5000 r--s 00032000 08:02 24654084 /home/broberts/.IntelliJIdeaLI13/config/plugins/ruby/lib/joni-2.1.18.jar 7f16038e5000-7f16038f6000 r--s 0008c000 08:02 24654083 /home/broberts/.IntelliJIdeaLI13/config/plugins/ruby/lib/joda-time-2.10.jar 7f16038f6000-7f16039ab000 r--s 019b0000 08:02 24654081 /home/broberts/.IntelliJIdeaLI13/config/plugins/ruby/lib/ruby.jar 7f16039ab000-7f16039ac000 r--s 00000000 08:02 11414201 /export/apps/xtools/LNKD-intellij-2019.1/plugins/jsp/lib/resources_en.jar 7f16039ac000-7f16039bc000 r--s 00185000 08:02 24654082 /home/broberts/.IntelliJIdeaLI13/config/plugins/ruby/lib/jcodings-1.0.30.jar 7f16039bc000-7f16039bd000 r--s 00002000 08:02 24654080 /home/broberts/.IntelliJIdeaLI13/config/plugins/ruby/lib/bytelist-1.0.15.jar 7f16039bd000-7f16039c5000 r--s 00073000 08:02 24654093 /home/broberts/.IntelliJIdeaLI13/config/plugins/lireviewboard/lib/lireviewboard-9.3.0.jar 7f16039c5000-7f16039c8000 r--s 0000d000 08:02 24654092 /home/broberts/.IntelliJIdeaLI13/config/plugins/lireviewboard/lib/cache2k-api-1.2.0.Final.jar 7f16039c8000-7f16039d0000 r--s 0004d000 08:02 24654091 /home/broberts/.IntelliJIdeaLI13/config/plugins/lireviewboard/lib/cache2k-core-1.2.0.Final.jar 7f16039d0000-7f16039ed000 r--s 001bd000 08:02 24654090 /home/broberts/.IntelliJIdeaLI13/config/plugins/lireviewboard/lib/jide-oss-3.6.18.jar 7f16039ed000-7f16039ee000 r--s 00000000 08:02 24654089 /home/broberts/.IntelliJIdeaLI13/config/plugins/lireviewboard/lib/searchableOptions-9.3.0.jar 7f16039ee000-7f16039ef000 r--s 00006000 08:02 11414221 /export/apps/xtools/LNKD-intellij-2019.1/plugins/markdown/lib/resources_en.jar 7f16039ef000-7f16039f2000 r--s 00022000 08:02 11414220 /export/apps/xtools/LNKD-intellij-2019.1/plugins/markdown/lib/owasp-java-html-sanitizer.jar 7f16039f2000-7f16039fa000 r--s 0005c000 08:02 11414218 /export/apps/xtools/LNKD-intellij-2019.1/plugins/markdown/lib/markdown-0.1.31.jar 7f16039fa000-7f1603a04000 r--s 000d3000 08:02 11414219 /export/apps/xtools/LNKD-intellij-2019.1/plugins/markdown/lib/markdown.jar 7f1603a04000-7f1603a05000 r--s 00005000 08:02 9966919 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Docker/lib/Docker.jar 7f1603a05000-7f1603a09000 r--s 00029000 08:02 9966922 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Docker/lib/commons-io-2.3.jar 7f1603a09000-7f1603a0a000 r--s 00008000 08:02 9966915 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Docker/lib/Docker-java-impl.jar 7f1603a0a000-7f1603a13000 r--s 00046000 08:02 9966923 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Docker/lib/jackson-dataformat-yaml-2.7.3.jar 7f1603a13000-7f1603a23000 r--s 00213000 08:02 9966913 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Docker/lib/Docker-core.jar 7f1603a23000-7f1603a29000 r--s 00065000 08:02 9966914 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Docker/lib/Docker-file.jar 7f1603a29000-7f1603a2d000 r--s 0004f000 08:02 9966917 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Docker/lib/Docker-remote-run.jar 7f1603a2d000-7f1603a30000 r--s 0001d000 08:02 9966582 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Docker/lib/Docker-agent-api-rt.jar 7f1603a30000-7f1603a34000 r--s 00046000 08:02 9966583 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Docker/lib/Docker-compose.jar 7f1603a34000-7f1603a36000 r--s 00009000 08:02 9966921 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Docker/lib/commons-cli-1.2.jar 7f1603a36000-7f1603a37000 r--s 00002000 08:02 11414129 /export/apps/xtools/LNKD-intellij-2019.1/plugins/gherkin/lib/resources_en.jar 7f1603a37000-7f1603a3d000 r--s 0009a000 08:02 11414128 /export/apps/xtools/LNKD-intellij-2019.1/plugins/gherkin/lib/gherkin.jar 7f1603a3d000-7f1603a3e000 r--s 00000000 08:02 24654097 /home/broberts/.IntelliJIdeaLI13/config/plugins/rest/lib/resources_en.jar 7f1603a3e000-7f1603a41000 r--s 0003d000 08:02 24654096 /home/broberts/.IntelliJIdeaLI13/config/plugins/rest/lib/rest.jar 7f1603a41000-7f1603a42000 r--s 00006000 08:02 12068950 /export/apps/xtools/LNKD-intellij-2019.1/plugins/yaml/lib/resources_en.jar 7f1603a42000-7f1603a49000 r--s 000cb000 08:02 12068951 /export/apps/xtools/LNKD-intellij-2019.1/plugins/yaml/lib/yaml.jar 7f1603a49000-7f1603b05000 r--s 021e7000 08:02 9971976 /export/apps/xtools/LNKD-intellij-2019.1/plugins/JavaScriptLanguage/lib/JavaScriptLanguage.jar 7f1603b05000-7f1603b08000 r--s 00028000 08:02 9972141 /export/apps/xtools/LNKD-intellij-2019.1/plugins/PersistenceSupport/lib/persistence-openapi.jar 7f1603b08000-7f1603b0a000 r--s 00009000 08:02 24511804 /home/broberts/.IntelliJIdeaLI13/config/plugins/CheckStyle-IDEA/lib/slf4j-api-1.7.25.jar 7f1603b0a000-7f1603b11000 r--s 0004b000 08:02 24511803 /home/broberts/.IntelliJIdeaLI13/config/plugins/CheckStyle-IDEA/lib/commons-codec-1.11.jar 7f1603b11000-7f1603b13000 r--s 00003000 08:02 24511802 /home/broberts/.IntelliJIdeaLI13/config/plugins/CheckStyle-IDEA/lib/jcl-over-slf4j-1.7.25.jar 7f1603b13000-7f1603b19000 r--s 00050000 08:02 24511801 /home/broberts/.IntelliJIdeaLI13/config/plugins/CheckStyle-IDEA/lib/checkstyle-idea-5.27.0.jar 7f1603b19000-7f1603b1d000 r--s 00031000 08:02 24511800 /home/broberts/.IntelliJIdeaLI13/config/plugins/CheckStyle-IDEA/lib/commons-io-2.6.jar 7f1603b1d000-7f1603b26000 r--s 0006f000 08:02 24511799 /home/broberts/.IntelliJIdeaLI13/config/plugins/CheckStyle-IDEA/lib/log4j-1.2.17.jar 7f1603b26000-7f1603b27000 r--s 00002000 08:02 24511798 /home/broberts/.IntelliJIdeaLI13/config/plugins/CheckStyle-IDEA/lib/slf4j-log4j12-1.7.25.jar 7f1603b27000-7f1603b38000 r--s 00182000 08:02 11416403 /export/apps/xtools/LNKD-intellij-2019.1/plugins/stream-debugger/lib/stream-debugger.jar 7f1603b38000-7f1603b39000 r--s 00000000 08:02 11416402 /export/apps/xtools/LNKD-intellij-2019.1/plugins/stream-debugger/lib/resources_en.jar 7f1603b39000-7f1603b3c000 r--s 00029000 08:02 11414428 /export/apps/xtools/LNKD-intellij-2019.1/plugins/smali/lib/smali.jar 7f1603b3c000-7f1603b45000 r--s 0015f000 08:02 11414183 /export/apps/xtools/LNKD-intellij-2019.1/plugins/java-decompiler/lib/java-decompiler.jar 7f1603b45000-7f1603b46000 r--s 00002000 08:02 9971803 /export/apps/xtools/LNKD-intellij-2019.1/plugins/JavaScriptDebugger/lib/resources_en.jar 7f1603b46000-7f1603b47000 r--s 00001000 08:02 9971801 /export/apps/xtools/LNKD-intellij-2019.1/plugins/JavaScriptDebugger/lib/nashorn-debugger-rt.jar 7f1603b47000-7f1603b4a000 r--s 00038000 08:02 9971802 /export/apps/xtools/LNKD-intellij-2019.1/plugins/JavaScriptDebugger/lib/nashorn-debugger.jar 7f1603b4a000-7f1603b5c000 r--s 00247000 08:02 9971798 /export/apps/xtools/LNKD-intellij-2019.1/plugins/JavaScriptDebugger/lib/JavaScriptDebugger.jar 7f1603b5c000-7f1603b60000 r--s 00064000 08:02 9971796 /export/apps/xtools/LNKD-intellij-2019.1/plugins/JavaScriptDebugger/lib/FirefoxConnector.jar 7f1603b60000-7f1603b61000 r--s 00001000 08:02 9971800 /export/apps/xtools/LNKD-intellij-2019.1/plugins/JavaScriptDebugger/lib/nashorn-debugger-9-rt.jar 7f1603b61000-7f1603b62000 r--s 00002000 08:02 9971797 /export/apps/xtools/LNKD-intellij-2019.1/plugins/JavaScriptDebugger/lib/JavaEEJavaScriptDebug.jar 7f1603b62000-7f1603b8b000 r--s 00450000 08:02 9971795 /export/apps/xtools/LNKD-intellij-2019.1/plugins/JavaScriptDebugger/lib/ChromeConnector.jar 7f1603b8b000-7f1603b8c000 r--s 00001000 08:02 11414032 /export/apps/xtools/LNKD-intellij-2019.1/plugins/eclipse/lib/resources_en.jar 7f1603b8c000-7f1603b8d000 r--s 00009000 08:02 11414029 /export/apps/xtools/LNKD-intellij-2019.1/plugins/eclipse/lib/common-eclipse-util.jar 7f1603b8d000-7f1603b8e000 r--s 00008000 08:02 11414030 /export/apps/xtools/LNKD-intellij-2019.1/plugins/eclipse/lib/eclipse-jps-plugin.jar 7f1603b8e000-7f1603b91000 r--s 00065000 08:02 11414031 /export/apps/xtools/LNKD-intellij-2019.1/plugins/eclipse/lib/eclipse.jar 7f1603b91000-7f1603b92000 r--s 00001000 08:02 10099253 /export/apps/xtools/LNKD-intellij-2019.1/plugins/aop-common/lib/resources_en.jar 7f1603b92000-7f1603b9a000 r--s 000b2000 08:02 10099252 /export/apps/xtools/LNKD-intellij-2019.1/plugins/aop-common/lib/aop-common.jar 7f1603b9a000-7f1603b9b000 r--s 00004000 08:02 9971756 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Hibernate/lib/hibernate5-console.jar 7f1603b9b000-7f1603b9d000 r--s 00003000 08:02 9971755 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Hibernate/lib/hibernate4-console.jar 7f1603b9d000-7f1603b9e000 r--s 00004000 08:02 9971757 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Hibernate/lib/hibernate52-console.jar 7f1603b9e000-7f1603ba8000 r--s 00121000 08:02 9971753 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Hibernate/lib/hibernate.jar 7f1603ba8000-7f1603baa000 r--s 00005000 08:02 9971752 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Hibernate/lib/hibernate-console.jar 7f1603baa000-7f1603bab000 r--s 00004000 08:02 9971754 /export/apps/xtools/LNKD-intellij-2019.1/plugins/Hibernate/lib/hibernate3-console.jar 7f1603bab000-7f1603bb3000 r--s 000e3000 08:02 9966441 /export/apps/xtools/LNKD-intellij-2019.1/plugins/CDI/lib/cdi-support.jar 7f1603bb3000-7f1603bbf000 r--s 0006b000 08:02 9971979 /export/apps/xtools/LNKD-intellij-2019.1/plugins/JavaScriptLanguage/lib/resources_en.jar 7f1603bbf000-7f1603bcb000 r--s 00071000 08:02 9971977 /export/apps/xtools/LNKD-intellij-2019.1/plugins/JavaScriptLanguage/lib/javascript-openapi.jar 7f1603bcb000-7f1603bcf000 r--s 0006b000 08:02 9971978 /export/apps/xtools/LNKD-intellij-2019.1/plugins/JavaScriptLanguage/lib/js-test-common.jar 7f1603bcf000-7f1603be3000 r--s 0067f000 08:02 9971771 /export/apps/xtools/LNKD-intellij-2019.1/plugins/JSF/lib/jsf-support.jar 7f1603be3000-7f1603bea000 r--s 0004a000 08:02 12068913 /export/apps/xtools/LNKD-intellij-2019.1/plugins/webDeployment/lib/commons-vfs2-2.2.1.5.jar 7f1603bea000-7f1603bff000 r--s 00309000 08:02 12068915 /export/apps/xtools/LNKD-intellij-2019.1/plugins/webDeployment/lib/webDeployment.jar 7f1603bff000-7f1603c18000 r--s 005e3000 08:02 9966446 /export/apps/xtools/LNKD-intellij-2019.1/plugins/CSS/lib/css.jar 7f1603c18000-7f1603c28000 r--s 0022d000 08:02 9966445 /export/apps/xtools/LNKD-intellij-2019.1/plugins/CSS/lib/css-openapi.jar 7f1603c28000-7f1603c2a000 r--s 00000000 08:02 6293114 /var/cache/fontconfig/87f5e051180a7a75f16eb6fe7dbd3749-le64.cache-4 7f1603c2a000-7f1603c35000 r--s 00000000 08:02 6293112 /var/cache/fontconfig/b79f3aaa7d385a141ab53ec885cc22a8-le64.cache-4 7f1603c35000-7f1603c38000 r--s 00000000 08:02 6293125 /var/cache/fontconfig/0b1bcc92b4d25cc154d77dafe3bceaa0-le64.cache-4 7f1603c38000-7f1603c3a000 r--s 00000000 08:02 6293677 /var/cache/fontconfig/711dae798b6bff4224ea2776edcb5c93-le64.cache-4 7f1603c3a000-7f1603c3c000 r--s 00000000 08:02 6293675 /var/cache/fontconfig/2e1514a9fdd499050989183bb65136db-le64.cache-4 7f1603c3c000-7f1603c46000 r--s 00000000 08:02 6293679 /var/cache/fontconfig/75726aeed9fe8691fd29315754d820cc-le64.cache-4 7f1603c46000-7f1603c48000 r--s 00000000 08:02 6293594 /var/cache/fontconfig/3f821257dd33660ba7bbb45c32deb84c-le64.cache-4 7f1603c48000-7f1603c4b000 r--s 00000000 08:02 6293665 /var/cache/fontconfig/830f035fa84a65ce80e050178dbb630d-le64.cache-4 7f1603c4b000-7f1603c4c000 r--s 00000000 08:02 6293596 /var/cache/fontconfig/81a173283b451552b599cfaafd6236bd-le64.cache-4 7f1603c4c000-7f1603c4d000 r--s 00000000 08:02 6293685 /var/cache/fontconfig/ac68f755438cc3dc5a526084839fc7ca-le64.cache-4 7f1603c4d000-7f1603c4e000 r--s 00000000 08:02 6293672 /var/cache/fontconfig/f951a6bc01c50d58ac4af16a0108457e-le64.cache-4 7f1603c4e000-7f1603c4f000 r--s 00000000 08:02 6293671 /var/cache/fontconfig/12513961c6e7090f8648812f9eaf65d6-le64.cache-4 7f1603c4f000-7f1603c52000 r--s 00000000 08:02 6293662 /var/cache/fontconfig/e26bf336397aae6fcef4d3803472adec-le64.cache-4 7f1603c52000-7f1603c53000 r--s 00000000 08:02 6293664 /var/cache/fontconfig/f132fa2327207a6ac3298c0518879731-le64.cache-4 7f1603c53000-7f1603c56000 r--s 00000000 08:02 6293663 /var/cache/fontconfig/0fef740e1edd47736fa2cccff935ab7c-le64.cache-4 7f1603c56000-7f1603c57000 r--s 00000000 08:02 6293126 /var/cache/fontconfig/6fcb01a03a016cc71057b587cdea6709-le64.cache-4 7f1603c57000-7f1603c5b000 r--s 00000000 08:02 6293682 /var/cache/fontconfig/29c8f5b6bf15d25ebb2e963855ab41be-le64.cache-4 7f1603c5b000-7f1603c5e000 r--s 00000000 08:02 6293597 /var/cache/fontconfig/e0636055caa850f70f1a6db008fc4729-le64.cache-4 7f1603c5e000-7f1603c5f000 r--s 00000000 08:02 6293683 /var/cache/fontconfig/46d51d90fe9d963f6f4186edb936a931-le64.cache-4 7f1603c5f000-7f1603c60000 r--s 00000000 08:02 6293676 /var/cache/fontconfig/b887eea8f1b96e1d899b44ed6681fc27-le64.cache-4 7f1603c60000-7f1603c61000 r--s 00000000 08:02 6293674 /var/cache/fontconfig/860639f272b8b4b3094f9e399e41bccd-le64.cache-4 7f1603c61000-7f1603c62000 r--s 00000000 08:02 6293681 /var/cache/fontconfig/211368abcb0ff835c229ff05c9ec01dc-le64.cache-4 7f1603c62000-7f1603c63000 r--s 00000000 08:02 6293658 /var/cache/fontconfig/c46020d7221988a13df853d2b46304fc-le64.cache-4 7f1603c63000-7f1603c64000 r--s 00000000 08:02 6293669 /var/cache/fontconfig/d759ee9cd048e494517a1be23d25a662-le64.cache-4 7f1603c64000-7f1603c65000 r--s 00000000 08:02 6293678 /var/cache/fontconfig/d290456e58f67f52b0f8f224126f9ea8-le64.cache-4 7f1603c65000-7f1603c66000 r--s 00000000 08:02 6293680 /var/cache/fontconfig/fa2b533b7056bdadb961f088bc0a978b-le64.cache-4 7f1603c66000-7f1603c67000 r--s 00000000 08:02 6293670 /var/cache/fontconfig/df893b4576ad6107f9397134092c4059-le64.cache-4 7f1603c67000-7f1603c68000 r--s 00000000 08:02 6293657 /var/cache/fontconfig/900402270e15d763a6e008bb2d4c7686-le64.cache-4 7f1603c68000-7f1603c69000 r--s 00000000 08:02 6293661 /var/cache/fontconfig/47f48679023f44a4d1e44699a69464f6-le64.cache-4 7f1603c69000-7f1603c6a000 r--s 00000000 08:02 6293660 /var/cache/fontconfig/2881ed3fd21ca306ddad6f9b0dd3189f-le64.cache-4 7f1603c6a000-7f1603c6b000 r--s 00000000 08:02 6293666 /var/cache/fontconfig/3c3fb04d32a5211b073874b125d29701-le64.cache-4 7f1603c6b000-7f1603c70000 r--s 00000000 08:02 6293120 /var/cache/fontconfig/b67b32625a2bb51b023d3814a918f351-le64.cache-4 7f1603c70000-7f1603c72000 r--s 00000000 08:02 6293595 /var/cache/fontconfig/d3379abda271c4acd2ad0c01f565d0b0-le64.cache-4 7f1603c72000-7f1603c85000 r--s 00000000 08:02 6293668 /var/cache/fontconfig/614d1caaa4d7914789410f6367de37ca-le64.cache-4 7f1603c85000-7f1603c87000 r-xp 00000000 08:02 11534889 /usr/lib64/libfreebl3.so 7f1603c87000-7f1603e86000 ---p 00002000 08:02 11534889 /usr/lib64/libfreebl3.so 7f1603e86000-7f1603e87000 r--p 00001000 08:02 11534889 /usr/lib64/libfreebl3.so 7f1603e87000-7f1603e88000 rw-p 00002000 08:02 11534889 /usr/lib64/libfreebl3.so 7f1603e88000-7f1603e90000 r-xp 00000000 08:02 11534933 /usr/lib64/libcrypt-2.17.so 7f1603e90000-7f160408f000 ---p 00008000 08:02 11534933 /usr/lib64/libcrypt-2.17.so 7f160408f000-7f1604090000 r--p 00007000 08:02 11534933 /usr/lib64/libcrypt-2.17.so 7f1604090000-7f1604091000 rw-p 00008000 08:02 11534933 /usr/lib64/libcrypt-2.17.so 7f1604091000-7f16040bf000 rw-p 00000000 00:00 0 7f16040bf000-7f16040c8000 r-xp 00000000 08:02 11535673 /usr/lib64/libltdl.so.7.3.0 7f16040c8000-7f16042c7000 ---p 00009000 08:02 11535673 /usr/lib64/libltdl.so.7.3.0 7f16042c7000-7f16042c8000 r--p 00008000 08:02 11535673 /usr/lib64/libltdl.so.7.3.0 7f16042c8000-7f16042c9000 rw-p 00009000 08:02 11535673 /usr/lib64/libltdl.so.7.3.0 7f16042c9000-7f16042dd000 r-xp 00000000 08:02 11535811 /usr/lib64/libtdb.so.1.3.8 7f16042dd000-7f16044dd000 ---p 00014000 08:02 11535811 /usr/lib64/libtdb.so.1.3.8 7f16044dd000-7f16044de000 r--p 00014000 08:02 11535811 /usr/lib64/libtdb.so.1.3.8 7f16044de000-7f16044df000 rw-p 00015000 08:02 11535811 /usr/lib64/libtdb.so.1.3.8 7f16044df000-7f16044e5000 r-xp 00000000 08:02 11535287 /usr/lib64/libogg.so.0.8.0 7f16044e5000-7f16046e4000 ---p 00006000 08:02 11535287 /usr/lib64/libogg.so.0.8.0 7f16046e4000-7f16046e5000 r--p 00005000 08:02 11535287 /usr/lib64/libogg.so.0.8.0 7f16046e5000-7f16046e6000 rw-p 00006000 08:02 11535287 /usr/lib64/libogg.so.0.8.0 7f16046e6000-7f1604712000 r-xp 00000000 08:02 11535345 /usr/lib64/libvorbis.so.0.4.6 7f1604712000-7f1604912000 ---p 0002c000 08:02 11535345 /usr/lib64/libvorbis.so.0.4.6 7f1604912000-7f1604913000 r--p 0002c000 08:02 11535345 /usr/lib64/libvorbis.so.0.4.6 7f1604913000-7f1604914000 rw-p 0002d000 08:02 11535345 /usr/lib64/libvorbis.so.0.4.6 7f1604914000-7f160491c000 r-xp 00000000 08:02 11535349 /usr/lib64/libvorbisfile.so.3.3.5 7f160491c000-7f1604b1b000 ---p 00008000 08:02 11535349 /usr/lib64/libvorbisfile.so.3.3.5 7f1604b1b000-7f1604b1c000 r--p 00007000 08:02 11535349 /usr/lib64/libvorbisfile.so.3.3.5 7f1604b1c000-7f1604b1d000 rw-p 00008000 08:02 11535349 /usr/lib64/libvorbisfile.so.3.3.5 7f1604b1d000-7f1604b2d000 r-xp 00000000 08:02 11540298 /usr/lib64/libcanberra.so.0.2.5 7f1604b2d000-7f1604d2c000 ---p 00010000 08:02 11540298 /usr/lib64/libcanberra.so.0.2.5 7f1604d2c000-7f1604d2d000 r--p 0000f000 08:02 11540298 /usr/lib64/libcanberra.so.0.2.5 7f1604d2d000-7f1604d2e000 rw-p 00010000 08:02 11540298 /usr/lib64/libcanberra.so.0.2.5 7f1604d2e000-7f1604d32000 r-xp 00000000 08:02 11544624 /usr/lib64/libcanberra-gtk.so.0.1.9 7f1604d32000-7f1604f31000 ---p 00004000 08:02 11544624 /usr/lib64/libcanberra-gtk.so.0.1.9 7f1604f31000-7f1604f32000 r--p 00003000 08:02 11544624 /usr/lib64/libcanberra-gtk.so.0.1.9 7f1604f32000-7f1604f33000 rw-p 00004000 08:02 11544624 /usr/lib64/libcanberra-gtk.so.0.1.9 7f1604f33000-7f1604f38000 r-xp 00000000 08:02 13374620 /usr/lib64/gtk-2.0/modules/libcanberra-gtk-module.so 7f1604f38000-7f1605137000 ---p 00005000 08:02 13374620 /usr/lib64/gtk-2.0/modules/libcanberra-gtk-module.so 7f1605137000-7f1605138000 r--p 00004000 08:02 13374620 /usr/lib64/gtk-2.0/modules/libcanberra-gtk-module.so 7f1605138000-7f1605139000 rw-p 00005000 08:02 13374620 /usr/lib64/gtk-2.0/modules/libcanberra-gtk-module.so 7f1605139000-7f160513a000 r-xp 00000000 08:02 13374643 /usr/lib64/gtk-2.0/modules/libpk-gtk-module.so 7f160513a000-7f1605339000 ---p 00001000 08:02 13374643 /usr/lib64/gtk-2.0/modules/libpk-gtk-module.so 7f1605339000-7f160533a000 r--p 00000000 08:02 13374643 /usr/lib64/gtk-2.0/modules/libpk-gtk-module.so 7f160533a000-7f160533b000 rw-p 00001000 08:02 13374643 /usr/lib64/gtk-2.0/modules/libpk-gtk-module.so 7f160533b000-7f160533e000 r-xp 00000000 08:02 13374523 /usr/lib64/gtk-2.0/2.10.0/engines/libadwaita.so 7f160533e000-7f160553d000 ---p 00003000 08:02 13374523 /usr/lib64/gtk-2.0/2.10.0/engines/libadwaita.so 7f160553d000-7f160553e000 r--p 00002000 08:02 13374523 /usr/lib64/gtk-2.0/2.10.0/engines/libadwaita.so 7f160553e000-7f160553f000 rw-p 00003000 08:02 13374523 /usr/lib64/gtk-2.0/2.10.0/engines/libadwaita.so 7f160553f000-7f1605548000 r-xp 00000000 08:02 13371665 /usr/lib64/gtk-2.0/2.10.0/engines/libpixmap.so 7f1605548000-7f1605748000 ---p 00009000 08:02 13371665 /usr/lib64/gtk-2.0/2.10.0/engines/libpixmap.so 7f1605748000-7f1605749000 r--p 00009000 08:02 13371665 /usr/lib64/gtk-2.0/2.10.0/engines/libpixmap.so 7f1605749000-7f160574a000 rw-p 0000a000 08:02 13371665 /usr/lib64/gtk-2.0/2.10.0/engines/libpixmap.so 7f160574a000-7f16057aa000 r-xp 00000000 08:02 11535093 /usr/lib64/libpcre.so.1.2.0 7f16057aa000-7f16059a9000 ---p 00060000 08:02 11535093 /usr/lib64/libpcre.so.1.2.0 7f16059a9000-7f16059aa000 r--p 0005f000 08:02 11535093 /usr/lib64/libpcre.so.1.2.0 7f16059aa000-7f16059ab000 rw-p 00060000 08:02 11535093 /usr/lib64/libpcre.so.1.2.0 7f16059ab000-7f16059ba000 r-xp 00000000 08:02 11534959 /usr/lib64/libGLX.so.0 7f16059ba000-7f1605bba000 ---p 0000f000 08:02 11534959 /usr/lib64/libGLX.so.0 7f1605bba000-7f1605bbb000 rw-p 0000f000 08:02 11534959 /usr/lib64/libGLX.so.0 7f1605bbb000-7f1605bdb000 rw-p 00000000 00:00 0 7f1605bdb000-7f1605c29000 r-xp 00000000 08:02 11534957 /usr/lib64/libGLdispatch.so.0 7f1605c29000-7f1605c5b000 r-xp 0004e000 08:02 11534957 /usr/lib64/libGLdispatch.so.0 7f1605c5b000-7f1605c95000 r-xp 00080000 08:02 11534957 /usr/lib64/libGLdispatch.so.0 7f1605c95000-7f1605e95000 ---p 000ba000 08:02 11534957 /usr/lib64/libGLdispatch.so.0 7f1605e95000-7f1605ea4000 rw-p 000ba000 08:02 11534957 /usr/lib64/libGLdispatch.so.0 7f1605ea4000-7f1605ec4000 rw-p 00000000 00:00 0 7f1605ec4000-7f1605eef000 r-xp 00000000 08:02 11536184 /usr/lib64/libgraphite2.so.3.0.1 7f1605eef000-7f16060ee000 ---p 0002b000 08:02 11536184 /usr/lib64/libgraphite2.so.3.0.1 7f16060ee000-7f16060f0000 r--p 0002a000 08:02 11536184 /usr/lib64/libgraphite2.so.3.0.1 7f16060f0000-7f16060f1000 rw-p 0002c000 08:02 11536184 /usr/lib64/libgraphite2.so.3.0.1 7f16060f1000-7f1606118000 r-xp 00000000 08:02 11535146 /usr/lib64/libexpat.so.1.6.0 7f1606118000-7f1606318000 ---p 00027000 08:02 11535146 /usr/lib64/libexpat.so.1.6.0 7f1606318000-7f160631a000 r--p 00027000 08:02 11535146 /usr/lib64/libexpat.so.1.6.0 7f160631a000-7f160631b000 rw-p 00029000 08:02 11535146 /usr/lib64/libexpat.so.1.6.0 7f160631b000-7f1606331000 r-xp 00000000 08:02 11547982 /usr/lib64/libresolv-2.17.so 7f1606331000-7f1606531000 ---p 00016000 08:02 11547982 /usr/lib64/libresolv-2.17.so 7f1606531000-7f1606532000 r--p 00016000 08:02 11547982 /usr/lib64/libresolv-2.17.so 7f1606532000-7f1606533000 rw-p 00017000 08:02 11547982 /usr/lib64/libresolv-2.17.so 7f1606533000-7f1606535000 rw-p 00000000 00:00 0 7f1606535000-7f1606559000 r-xp 00000000 08:02 11535102 /usr/lib64/libselinux.so.1 7f1606559000-7f1606758000 ---p 00024000 08:02 11535102 /usr/lib64/libselinux.so.1 7f1606758000-7f1606759000 r--p 00023000 08:02 11535102 /usr/lib64/libselinux.so.1 7f1606759000-7f160675a000 rw-p 00024000 08:02 11535102 /usr/lib64/libselinux.so.1 7f160675a000-7f160675c000 rw-p 00000000 00:00 0 7f160675c000-7f1606763000 r-xp 00000000 08:02 11535391 /usr/lib64/libffi.so.6.0.1 7f1606763000-7f1606962000 ---p 00007000 08:02 11535391 /usr/lib64/libffi.so.6.0.1 7f1606962000-7f1606963000 r--p 00006000 08:02 11535391 /usr/lib64/libffi.so.6.0.1 7f1606963000-7f1606964000 rw-p 00007000 08:02 11535391 /usr/lib64/libffi.so.6.0.1 7f1606964000-7f1606996000 r-xp 00000000 08:02 11534961 /usr/lib64/libGL.so.1.0.0 7f1606996000-7f16069c8000 r-xp 00032000 08:02 11534961 /usr/lib64/libGL.so.1.0.0 7f16069c8000-7f16069f2000 r-xp 00064000 08:02 11534961 /usr/lib64/libGL.so.1.0.0 7f16069f2000-7f1606bf2000 ---p 0008e000 08:02 11534961 /usr/lib64/libGL.so.1.0.0 7f1606bf2000-7f1606bf3000 rw-p 0008e000 08:02 11534961 /usr/lib64/libGL.so.1.0.0 7f1606bf3000-7f1606bf4000 rw-p 00000000 00:00 0 7f1606bf4000-7f1606c09000 r-xp 00000000 08:02 11535105 /usr/lib64/libz.so.1.2.7 7f1606c09000-7f1606e08000 ---p 00015000 08:02 11535105 /usr/lib64/libz.so.1.2.7 7f1606e08000-7f1606e09000 r--p 00014000 08:02 11535105 /usr/lib64/libz.so.1.2.7 7f1606e09000-7f1606e0a000 rw-p 00015000 08:02 11535105 /usr/lib64/libz.so.1.2.7 7f1606e0a000-7f1606e13000 r-xp 00000000 08:02 11535695 /usr/lib64/libxcb-render.so.0.0.0 7f1606e13000-7f1607012000 ---p 00009000 08:02 11535695 /usr/lib64/libxcb-render.so.0.0.0 7f1607012000-7f1607013000 r--p 00008000 08:02 11535695 /usr/lib64/libxcb-render.so.0.0.0 7f1607013000-7f1607014000 rw-p 00009000 08:02 11535695 /usr/lib64/libxcb-render.so.0.0.0 7f1607014000-7f1607016000 r-xp 00000000 08:02 11535703 /usr/lib64/libxcb-shm.so.0.0.0 7f1607016000-7f1607216000 ---p 00002000 08:02 11535703 /usr/lib64/libxcb-shm.so.0.0.0 7f1607216000-7f1607217000 r--p 00002000 08:02 11535703 /usr/lib64/libxcb-shm.so.0.0.0 7f1607217000-7f1607218000 rw-p 00003000 08:02 11535703 /usr/lib64/libxcb-shm.so.0.0.0 7f1607218000-7f1607241000 r-xp 00000000 08:02 11535130 /usr/lib64/libpng15.so.15.13.0 7f1607241000-7f1607441000 ---p 00029000 08:02 11535130 /usr/lib64/libpng15.so.15.13.0 7f1607441000-7f1607442000 r--p 00029000 08:02 11535130 /usr/lib64/libpng15.so.15.13.0 7f1607442000-7f1607443000 rw-p 0002a000 08:02 11535130 /usr/lib64/libpng15.so.15.13.0 7f1607443000-7f1607455000 r-xp 00000000 08:02 11535004 /usr/lib64/libEGL.so.1 7f1607455000-7f1607655000 ---p 00012000 08:02 11535004 /usr/lib64/libEGL.so.1 7f1607655000-7f1607656000 rw-p 00012000 08:02 11535004 /usr/lib64/libEGL.so.1 7f1607656000-7f16076f6000 r-xp 00000000 08:02 11535596 /usr/lib64/libpixman-1.so.0.34.0 7f16076f6000-7f16078f6000 ---p 000a0000 08:02 11535596 /usr/lib64/libpixman-1.so.0.34.0 7f16078f6000-7f16078fe000 r--p 000a0000 08:02 11535596 /usr/lib64/libpixman-1.so.0.34.0 7f16078fe000-7f16078ff000 rw-p 000a8000 08:02 11535596 /usr/lib64/libpixman-1.so.0.34.0 7f16078ff000-7f160799f000 r-xp 00000000 08:02 11535109 /usr/lib64/libfreetype.so.6.10.0 7f160799f000-7f1607b9e000 ---p 000a0000 08:02 11535109 /usr/lib64/libfreetype.so.6.10.0 7f1607b9e000-7f1607ba4000 r--p 0009f000 08:02 11535109 /usr/lib64/libfreetype.so.6.10.0 7f1607ba4000-7f1607ba5000 rw-p 000a5000 08:02 11535109 /usr/lib64/libfreetype.so.6.10.0 7f1607ba5000-7f1607bfc000 r-xp 00000000 08:02 11536186 /usr/lib64/libharfbuzz.so.0.936.0 7f1607bfc000-7f1607dfc000 ---p 00057000 08:02 11536186 /usr/lib64/libharfbuzz.so.0.936.0 7f1607dfc000-7f1607dfd000 r--p 00057000 08:02 11536186 /usr/lib64/libharfbuzz.so.0.936.0 7f1607dfd000-7f1607dfe000 rw-p 00058000 08:02 11536186 /usr/lib64/libharfbuzz.so.0.936.0 7f1607dfe000-7f1607dff000 r-xp 00000000 08:02 11535409 /usr/lib64/libgthread-2.0.so.0.4600.2 7f1607dff000-7f1607ffe000 ---p 00001000 08:02 11535409 /usr/lib64/libgthread-2.0.so.0.4600.2 7f1607ffe000-7f1607fff000 r--p 00000000 08:02 11535409 /usr/lib64/libgthread-2.0.so.0.4600.2 7f1607fff000-7f1608000000 rw-p 00001000 08:02 11535409 /usr/lib64/libgthread-2.0.so.0.4600.2 7f1608000000-7f1608021000 rw-p 00000000 00:00 0 7f1608021000-7f160c000000 ---p 00000000 00:00 0 7f160c000000-7f160c021000 rw-p 00000000 00:00 0 7f160c021000-7f1610000000 ---p 00000000 00:00 0 7f1610000000-7f1610027000 rw-p 00000000 00:00 0 7f1610027000-7f1614000000 ---p 00000000 00:00 0 7f1614000000-7f1614021000 rw-p 00000000 00:00 0 7f1614021000-7f1618000000 ---p 00000000 00:00 0 7f1618000000-7f1618001000 r--s 00000000 08:02 6293667 /var/cache/fontconfig/e61abf8156cc476151baa07d67337cae-le64.cache-4 7f1618001000-7f1618002000 r--s 00000000 08:02 6293684 /var/cache/fontconfig/b4d0b56f766d89640448751fcd18ec1e-le64.cache-4 7f1618002000-7f1618004000 r--s 00000000 08:02 6293127 /var/cache/fontconfig/99a1ce9f8b6a0434aadb01d3779b0780-le64.cache-4 7f1618004000-7f1618006000 r--s 00000000 08:02 6293128 /var/cache/fontconfig/f9d379b867d7c69c85310a4f24e5228f-le64.cache-4 7f1618006000-7f1618015000 r--s 00000000 08:02 6291737 /var/cache/fontconfig/12b26b760a24f8b4feb03ad48a333a72-le64.cache-4 7f1618015000-7f161801d000 r--s 00000000 08:02 6293673 /var/cache/fontconfig/928306c3ad40271d946e41014a49fc28-le64.cache-4 7f161801d000-7f161801e000 r--s 00000000 08:02 6293129 /var/cache/fontconfig/3640555adad8a8f6978400293cfce7ab-le64.cache-4 7f161801e000-7f1618022000 r--s 00000000 08:02 6293123 /var/cache/fontconfig/beeeeb3dfe132a8a0633a017c99ce0c0-le64.cache-4 7f1618022000-7f1618024000 r-xp 00000000 08:02 11537745 /usr/lib64/libXdamage.so.1.1.0 7f1618024000-7f1618223000 ---p 00002000 08:02 11537745 /usr/lib64/libXdamage.so.1.1.0 7f1618223000-7f1618224000 r--p 00001000 08:02 11537745 /usr/lib64/libXdamage.so.1.1.0 7f1618224000-7f1618225000 rw-p 00002000 08:02 11537745 /usr/lib64/libXdamage.so.1.1.0 7f1618225000-7f1618227000 r-xp 00000000 08:02 11537747 /usr/lib64/libXcomposite.so.1.0.0 7f1618227000-7f1618426000 ---p 00002000 08:02 11537747 /usr/lib64/libXcomposite.so.1.0.0 7f1618426000-7f1618427000 r--p 00001000 08:02 11537747 /usr/lib64/libXcomposite.so.1.0.0 7f1618427000-7f1618428000 rw-p 00002000 08:02 11537747 /usr/lib64/libXcomposite.so.1.0.0 7f1618428000-7f1618431000 r-xp 00000000 08:02 11537743 /usr/lib64/libXrandr.so.2.2.0 7f1618431000-7f1618630000 ---p 00009000 08:02 11537743 /usr/lib64/libXrandr.so.2.2.0 7f1618630000-7f1618631000 r--p 00008000 08:02 11537743 /usr/lib64/libXrandr.so.2.2.0 7f1618631000-7f1618632000 rw-p 00009000 08:02 11537743 /usr/lib64/libXrandr.so.2.2.0 7f1618632000-7f1618634000 r-xp 00000000 08:02 11537753 /usr/lib64/libXinerama.so.1.0.0 7f1618634000-7f1618833000 ---p 00002000 08:02 11537753 /usr/lib64/libXinerama.so.1.0.0 7f1618833000-7f1618834000 r--p 00001000 08:02 11537753 /usr/lib64/libXinerama.so.1.0.0 7f1618834000-7f1618835000 rw-p 00002000 08:02 11537753 /usr/lib64/libXinerama.so.1.0.0 7f1618835000-7f1618969000 r-xp 00000000 08:02 11535403 /usr/lib64/libglib-2.0.so.0.4600.2 7f1618969000-7f1618b69000 ---p 00134000 08:02 11535403 /usr/lib64/libglib-2.0.so.0.4600.2 7f1618b69000-7f1618b6a000 r--p 00134000 08:02 11535403 /usr/lib64/libglib-2.0.so.0.4600.2 7f1618b6a000-7f1618b6b000 rw-p 00135000 08:02 11535403 /usr/lib64/libglib-2.0.so.0.4600.2 7f1618b6b000-7f1618b6c000 rw-p 00000000 00:00 0 7f1618b6c000-7f1618bba000 r-xp 00000000 08:02 11535407 /usr/lib64/libgobject-2.0.so.0.4600.2 7f1618bba000-7f1618dba000 ---p 0004e000 08:02 11535407 /usr/lib64/libgobject-2.0.so.0.4600.2 7f1618dba000-7f1618dbb000 r--p 0004e000 08:02 11535407 /usr/lib64/libgobject-2.0.so.0.4600.2 7f1618dbb000-7f1618dbc000 rw-p 0004f000 08:02 11535407 /usr/lib64/libgobject-2.0.so.0.4600.2 7f1618dbc000-7f1618df6000 r-xp 00000000 08:02 11537096 /usr/lib64/libfontconfig.so.1.7.0 7f1618df6000-7f1618ff6000 ---p 0003a000 08:02 11537096 /usr/lib64/libfontconfig.so.1.7.0 7f1618ff6000-7f1618ff8000 r--p 0003a000 08:02 11537096 /usr/lib64/libfontconfig.so.1.7.0 7f1618ff8000-7f1618ff9000 rw-p 0003c000 08:02 11537096 /usr/lib64/libfontconfig.so.1.7.0 7f1618ff9000-7f1619041000 r-xp 00000000 08:02 11540410 /usr/lib64/libpango-1.0.so.0.3600.8 7f1619041000-7f1619241000 ---p 00048000 08:02 11540410 /usr/lib64/libpango-1.0.so.0.3600.8 7f1619241000-7f1619243000 r--p 00048000 08:02 11540410 /usr/lib64/libpango-1.0.so.0.3600.8 7f1619243000-7f1619244000 rw-p 0004a000 08:02 11540410 /usr/lib64/libpango-1.0.so.0.3600.8 7f1619244000-7f1619258000 r-xp 00000000 08:02 11540414 /usr/lib64/libpangoft2-1.0.so.0.3600.8 7f1619258000-7f1619457000 ---p 00014000 08:02 11540414 /usr/lib64/libpangoft2-1.0.so.0.3600.8 7f1619457000-7f1619458000 r--p 00013000 08:02 11540414 /usr/lib64/libpangoft2-1.0.so.0.3600.8 7f1619458000-7f1619459000 rw-p 00014000 08:02 11540414 /usr/lib64/libpangoft2-1.0.so.0.3600.8 7f1619459000-7f16195d1000 r-xp 00000000 08:02 11535401 /usr/lib64/libgio-2.0.so.0.4600.2 7f16195d1000-7f16197d1000 ---p 00178000 08:02 11535401 /usr/lib64/libgio-2.0.so.0.4600.2 7f16197d1000-7f16197d5000 r--p 00178000 08:02 11535401 /usr/lib64/libgio-2.0.so.0.4600.2 7f16197d5000-7f16197d7000 rw-p 0017c000 08:02 11535401 /usr/lib64/libgio-2.0.so.0.4600.2 7f16197d7000-7f16197d9000 rw-p 00000000 00:00 0 7f16197d9000-7f16197fe000 r-xp 00000000 08:02 11539562 /usr/lib64/libgdk_pixbuf-2.0.so.0.3100.6 7f16197fe000-7f16199fd000 ---p 00025000 08:02 11539562 /usr/lib64/libgdk_pixbuf-2.0.so.0.3100.6 7f16199fd000-7f16199fe000 r--p 00024000 08:02 11539562 /usr/lib64/libgdk_pixbuf-2.0.so.0.3100.6 7f16199fe000-7f16199ff000 rw-p 00025000 08:02 11539562 /usr/lib64/libgdk_pixbuf-2.0.so.0.3100.6 7f16199ff000-7f1619b20000 r-xp 00000000 08:02 11540406 /usr/lib64/libcairo.so.2.11400.2 7f1619b20000-7f1619d20000 ---p 00121000 08:02 11540406 /usr/lib64/libcairo.so.2.11400.2 7f1619d20000-7f1619d23000 r--p 00121000 08:02 11540406 /usr/lib64/libcairo.so.2.11400.2 7f1619d23000-7f1619d25000 rw-p 00124000 08:02 11540406 /usr/lib64/libcairo.so.2.11400.2 7f1619d25000-7f1619d26000 rw-p 00000000 00:00 0 7f1619d26000-7f1619d48000 r-xp 00000000 08:02 11535452 /usr/lib64/libatk-1.0.so.0.21409.1 7f1619d48000-7f1619f48000 ---p 00022000 08:02 11535452 /usr/lib64/libatk-1.0.so.0.21409.1 7f1619f48000-7f1619f4b000 r--p 00022000 08:02 11535452 /usr/lib64/libatk-1.0.so.0.21409.1 7f1619f4b000-7f1619f4c000 rw-p 00025000 08:02 11535452 /usr/lib64/libatk-1.0.so.0.21409.1 7f1619f4c000-7f1619f58000 r-xp 00000000 08:02 11540412 /usr/lib64/libpangocairo-1.0.so.0.3600.8 7f1619f58000-7f161a157000 ---p 0000c000 08:02 11540412 /usr/lib64/libpangocairo-1.0.so.0.3600.8 7f161a157000-7f161a158000 r--p 0000b000 08:02 11540412 /usr/lib64/libpangocairo-1.0.so.0.3600.8 7f161a158000-7f161a159000 rw-p 0000c000 08:02 11540412 /usr/lib64/libpangocairo-1.0.so.0.3600.8 7f161a159000-7f161a15c000 r-xp 00000000 08:02 11535405 /usr/lib64/libgmodule-2.0.so.0.4600.2 7f161a15c000-7f161a35b000 ---p 00003000 08:02 11535405 /usr/lib64/libgmodule-2.0.so.0.4600.2 7f161a35b000-7f161a35c000 r--p 00002000 08:02 11535405 /usr/lib64/libgmodule-2.0.so.0.4600.2 7f161a35c000-7f161a35d000 rw-p 00003000 08:02 11535405 /usr/lib64/libgmodule-2.0.so.0.4600.2 7f161a35d000-7f161a418000 r-xp 00000000 08:02 11540428 /usr/lib64/libgdk-x11-2.0.so.0.2400.28 7f161a418000-7f161a618000 ---p 000bb000 08:02 11540428 /usr/lib64/libgdk-x11-2.0.so.0.2400.28 7f161a618000-7f161a61c000 r--p 000bb000 08:02 11540428 /usr/lib64/libgdk-x11-2.0.so.0.2400.28 7f161a61c000-7f161a61e000 rw-p 000bf000 08:02 11540428 /usr/lib64/libgdk-x11-2.0.so.0.2400.28 7f161a61e000-7f161aa95000 r-xp 00000000 08:02 11540430 /usr/lib64/libgtk-x11-2.0.so.0.2400.28 7f161aa95000-7f161ac94000 ---p 00477000 08:02 11540430 /usr/lib64/libgtk-x11-2.0.so.0.2400.28 7f161ac94000-7f161ac9b000 r--p 00476000 08:02 11540430 /usr/lib64/libgtk-x11-2.0.so.0.2400.28 7f161ac9b000-7f161ac9f000 rw-p 0047d000 08:02 11540430 /usr/lib64/libgtk-x11-2.0.so.0.2400.28 7f161ac9f000-7f161aca2000 rw-p 00000000 00:00 0 7f161aca2000-7f161aca3000 r--s 00004000 08:02 9966442 /export/apps/xtools/LNKD-intellij-2019.1/plugins/CDI/lib/resources_en.jar 7f161aca3000-7f161aca4000 r--s 00006000 08:02 9971980 /export/apps/xtools/LNKD-intellij-2019.1/plugins/JavaScriptLanguage/lib/semver4j-2.2.0.jar 7f161aca4000-7f161aca6000 r--s 00004000 08:02 9971772 /export/apps/xtools/LNKD-intellij-2019.1/plugins/JSF/lib/resources_en.jar 7f161aca6000-7f161aca7000 r--s 00010000 08:02 12068914 /export/apps/xtools/LNKD-intellij-2019.1/plugins/webDeployment/lib/resources_en.jar 7f161aca7000-7f161acab000 r--s 0000f000 08:02 9966447 /export/apps/xtools/LNKD-intellij-2019.1/plugins/CSS/lib/resources_en.jar 7f161acab000-7f161acaf000 r--s 00059000 08:02 12068897 /export/apps/xtools/LNKD-intellij-2019.1/plugins/uml/lib/diagram-api.jar 7f161acaf000-7f161acb7000 r--s 00112000 08:02 12068898 /export/apps/xtools/LNKD-intellij-2019.1/plugins/uml/lib/uml-support.jar 7f161acb7000-7f161acba000 r--s 00043000 08:02 9972140 /export/apps/xtools/LNKD-intellij-2019.1/plugins/PersistenceSupport/lib/persistence-impl.jar 7f161acba000-7f161aeb3000 rw-p 00000000 00:00 0 7f161aeb3000-7f161aeba000 ---p 00000000 00:00 0 7f161aeba000-7f161aed2000 r-xp 00000000 08:02 24389605 /home/broberts/.IntelliJIdeaLI13/system/tmp/jna1630732346096419902.tmp (deleted) 7f161aed2000-7f161b0d2000 ---p 00018000 08:02 24389605 /home/broberts/.IntelliJIdeaLI13/system/tmp/jna1630732346096419902.tmp (deleted) 7f161b0d2000-7f161b0d3000 rw-p 00018000 08:02 24389605 /home/broberts/.IntelliJIdeaLI13/system/tmp/jna1630732346096419902.tmp (deleted) 7f161b0d3000-7f161b0dc000 r-xp 00000000 08:02 11017768 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libmanagement.so 7f161b0dc000-7f161b2db000 ---p 00009000 08:02 11017768 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libmanagement.so 7f161b2db000-7f161b2dc000 r--p 00008000 08:02 11017768 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libmanagement.so 7f161b2dc000-7f161b2dd000 rw-p 00009000 08:02 11017768 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libmanagement.so 7f161b2dd000-7f161b4d7000 rw-p 00000000 00:00 0 7f161b4d7000-7f161b4dd000 ---p 00000000 00:00 0 7f161b4dd000-7f161b4e0000 ---p 00000000 00:00 0 7f161b4e0000-7f161b7de000 rw-p 00000000 00:00 0 7f161b7de000-7f161b7df000 r--s 00010000 08:02 11017696 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/ext/zipfs.jar 7f161b7df000-7f161b7fa000 r--s 001d4000 08:02 11017693 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/ext/nashorn.jar 7f161b7fa000-7f161b816000 r--s 00393000 08:02 11017687 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/ext/cldrdata.jar 7f161b816000-7f161b820000 r--s 00116000 08:02 11017686 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/ext/localedata.jar 7f161b820000-7f161b8b5000 r--s 01112000 08:02 11017681 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/ext/jfxrt.jar 7f161b8b5000-7f161b8b6000 r--s 0000a000 08:02 11017651 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/ext/jaccess.jar 7f161b8b6000-7f161b8b8000 r--s 00001000 08:02 11017650 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/ext/dnsns.jar 7f161b8b8000-7f161b8b9000 r--s 00003000 08:02 9853465 /export/apps/xtools/LNKD-intellij-2019.1/lib/ant/lib/ant-javamail.jar 7f161b8b9000-7f161b8d8000 r--s 001ff000 08:02 9853490 /export/apps/xtools/LNKD-intellij-2019.1/lib/ant/lib/ant.jar 7f161b8d8000-7f161b8d9000 r--s 00002000 08:02 9853459 /export/apps/xtools/LNKD-intellij-2019.1/lib/ant/lib/ant-commons-logging.jar 7f161b8d9000-7f161b8da000 r--s 00003000 08:02 9853484 /export/apps/xtools/LNKD-intellij-2019.1/lib/ant/lib/ant-swing.jar 7f161b8da000-7f161b8db000 r--s 00002000 08:02 9853488 /export/apps/xtools/LNKD-intellij-2019.1/lib/ant/lib/ant-xz.jar 7f161b8db000-7f161b8de000 r--s 00020000 08:02 9853473 /export/apps/xtools/LNKD-intellij-2019.1/lib/ant/lib/ant-junit.jar 7f161b8de000-7f161b8df000 r--s 00004000 08:02 9853479 /export/apps/xtools/LNKD-intellij-2019.1/lib/ant/lib/ant-launcher.jar 7f161b8df000-7f161b8e1000 r--s 00001000 08:02 9853449 /export/apps/xtools/LNKD-intellij-2019.1/lib/ant/lib/ant-apache-log4j.jar 7f161b8e1000-7f161b8e2000 r--s 00003000 08:02 9853445 /export/apps/xtools/LNKD-intellij-2019.1/lib/ant/lib/ant-apache-bcel.jar 7f161b8e2000-7f161b8e4000 r--s 00002000 08:02 9853443 /export/apps/xtools/LNKD-intellij-2019.1/lib/ant/lib/ant-antlr.jar 7f161b8e4000-7f161b8e5000 r--s 00003000 08:02 9853475 /export/apps/xtools/LNKD-intellij-2019.1/lib/ant/lib/ant-junit4.jar 7f161b8e5000-7f161b8e6000 r--s 00002000 08:02 9853455 /export/apps/xtools/LNKD-intellij-2019.1/lib/ant/lib/ant-apache-resolver.jar 7f161b8e6000-7f161b8e8000 r--s 0000c000 08:02 9853471 /export/apps/xtools/LNKD-intellij-2019.1/lib/ant/lib/ant-jsch.jar 7f161b8e8000-7f161b8e9000 r--s 00002000 08:02 9853447 /export/apps/xtools/LNKD-intellij-2019.1/lib/ant/lib/ant-apache-bsf.jar 7f161b8e9000-7f161b8eb000 r--s 00014000 08:02 9853461 /export/apps/xtools/LNKD-intellij-2019.1/lib/ant/lib/ant-commons-net.jar 7f161b8eb000-7f161b8ed000 r--s 00006000 08:02 9853463 /export/apps/xtools/LNKD-intellij-2019.1/lib/ant/lib/ant-jai.jar 7f161b8ed000-7f161b8ee000 r--s 00002000 08:02 9853453 /export/apps/xtools/LNKD-intellij-2019.1/lib/ant/lib/ant-apache-regexp.jar 7f161b8ee000-7f161baee000 rw-p 00000000 00:00 0 7f161baee000-7f161baf1000 ---p 00000000 00:00 0 7f161baf1000-7f161bbef000 rw-p 00000000 00:00 0 7f161bbef000-7f161bbf4000 r-xp 00000000 08:02 11537739 /usr/lib64/libXfixes.so.3.1.0 7f161bbf4000-7f161bdf3000 ---p 00005000 08:02 11537739 /usr/lib64/libXfixes.so.3.1.0 7f161bdf3000-7f161bdf4000 r--p 00004000 08:02 11537739 /usr/lib64/libXfixes.so.3.1.0 7f161bdf4000-7f161bdf5000 rw-p 00005000 08:02 11537739 /usr/lib64/libXfixes.so.3.1.0 7f161bdf5000-7f161bdff000 r-xp 00000000 08:02 11537755 /usr/lib64/libXcursor.so.1.0.2 7f161bdff000-7f161bffe000 ---p 0000a000 08:02 11537755 /usr/lib64/libXcursor.so.1.0.2 7f161bffe000-7f161bfff000 r--p 00009000 08:02 11537755 /usr/lib64/libXcursor.so.1.0.2 7f161bfff000-7f161c000000 rw-p 0000a000 08:02 11537755 /usr/lib64/libXcursor.so.1.0.2 7f161c000000-7f161c021000 rw-p 00000000 00:00 0 7f161c021000-7f1620000000 ---p 00000000 00:00 0 7f1620000000-7f1620b22000 rw-p 00000000 00:00 0 7f1620b22000-7f1624000000 ---p 00000000 00:00 0 7f1624000000-7f1624edb000 rw-p 00000000 00:00 0 7f1624edb000-7f1628000000 ---p 00000000 00:00 0 7f1628000000-7f1628021000 rw-p 00000000 00:00 0 7f1628021000-7f162c000000 ---p 00000000 00:00 0 7f162c000000-7f162e0a2000 rw-p 00000000 00:00 0 7f162e0a2000-7f1630000000 ---p 00000000 00:00 0 7f1630000000-7f1632183000 rw-p 00000000 00:00 0 7f1632183000-7f1634000000 ---p 00000000 00:00 0 7f1634000000-7f1634021000 rw-p 00000000 00:00 0 7f1634021000-7f1638000000 ---p 00000000 00:00 0 7f1638000000-7f163a652000 rw-p 00000000 00:00 0 7f163a652000-7f163c000000 ---p 00000000 00:00 0 7f163c000000-7f163c021000 rw-p 00000000 00:00 0 7f163c021000-7f1640000000 ---p 00000000 00:00 0 7f1640000000-7f1640002000 r--s 00002000 08:02 9853469 /export/apps/xtools/LNKD-intellij-2019.1/lib/ant/lib/ant-jmf.jar 7f1640002000-7f1640004000 r--s 00001000 08:02 9853457 /export/apps/xtools/LNKD-intellij-2019.1/lib/ant/lib/ant-apache-xalan2.jar 7f1640004000-7f1640005000 r--s 00003000 08:02 9853467 /export/apps/xtools/LNKD-intellij-2019.1/lib/ant/lib/ant-jdepend.jar 7f1640005000-7f1640007000 r--s 0000d000 08:02 9853477 /export/apps/xtools/LNKD-intellij-2019.1/lib/ant/lib/ant-junitlauncher.jar 7f1640007000-7f1640009000 r--s 00003000 08:02 9853481 /export/apps/xtools/LNKD-intellij-2019.1/lib/ant/lib/ant-netrexx.jar 7f1640009000-7f1640029000 r--s 003c0000 08:02 9853559 /export/apps/xtools/LNKD-intellij-2019.1/lib/java-api.jar 7f1640029000-7f164002f000 r--s 00046000 08:02 9853519 /export/apps/xtools/LNKD-intellij-2019.1/lib/commons-net-3.6.jar 7f164002f000-7f1640045000 r--s 012bf000 08:02 9853661 /export/apps/xtools/LNKD-intellij-2019.1/lib/resources_en.jar 7f1640045000-7f164005c000 r--s 001d9000 08:02 9853422 /export/apps/xtools/LNKD-intellij-2019.1/lib/aapt-proto-jarjar.jar 7f164005c000-7f164005f000 ---p 00000000 00:00 0 7f164005f000-7f1640095000 rw-p 00000000 00:00 0 7f1640095000-7f1640098000 ---p 00000000 00:00 0 7f1640098000-7f1640396000 rw-p 00000000 00:00 0 7f1640396000-7f16403f5000 r-xp 00000000 08:02 11017760 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libfontmanager.so 7f16403f5000-7f16405f5000 ---p 0005f000 08:02 11017760 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libfontmanager.so 7f16405f5000-7f16405f8000 r--p 0005f000 08:02 11017760 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libfontmanager.so 7f16405f8000-7f16405f9000 rw-p 00062000 08:02 11017760 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libfontmanager.so 7f16405f9000-7f16405fb000 r-xp 00000000 08:02 11535675 /usr/lib64/libXau.so.6.0.0 7f16405fb000-7f16407fb000 ---p 00002000 08:02 11535675 /usr/lib64/libXau.so.6.0.0 7f16407fb000-7f16407fc000 r--p 00002000 08:02 11535675 /usr/lib64/libXau.so.6.0.0 7f16407fc000-7f16407fd000 rw-p 00003000 08:02 11535675 /usr/lib64/libXau.so.6.0.0 7f16407fd000-7f164081e000 r-xp 00000000 08:02 11535727 /usr/lib64/libxcb.so.1.1.0 7f164081e000-7f1640a1d000 ---p 00021000 08:02 11535727 /usr/lib64/libxcb.so.1.1.0 7f1640a1d000-7f1640a1e000 r--p 00020000 08:02 11535727 /usr/lib64/libxcb.so.1.1.0 7f1640a1e000-7f1640a1f000 rw-p 00021000 08:02 11535727 /usr/lib64/libxcb.so.1.1.0 7f1640a1f000-7f1640a2e000 r-xp 00000000 08:02 11537737 /usr/lib64/libXi.so.6.1.0 7f1640a2e000-7f1640c2d000 ---p 0000f000 08:02 11537737 /usr/lib64/libXi.so.6.1.0 7f1640c2d000-7f1640c2e000 r--p 0000e000 08:02 11537737 /usr/lib64/libXi.so.6.1.0 7f1640c2e000-7f1640c2f000 rw-p 0000f000 08:02 11537737 /usr/lib64/libXi.so.6.1.0 7f1640c2f000-7f1640c34000 r-xp 00000000 08:02 11537749 /usr/lib64/libXtst.so.6.1.0 7f1640c34000-7f1640e33000 ---p 00005000 08:02 11537749 /usr/lib64/libXtst.so.6.1.0 7f1640e33000-7f1640e34000 r--p 00004000 08:02 11537749 /usr/lib64/libXtst.so.6.1.0 7f1640e34000-7f1640e35000 rw-p 00005000 08:02 11537749 /usr/lib64/libXtst.so.6.1.0 7f1640e35000-7f1640e3e000 r-xp 00000000 08:02 11537741 /usr/lib64/libXrender.so.1.3.0 7f1640e3e000-7f164103d000 ---p 00009000 08:02 11537741 /usr/lib64/libXrender.so.1.3.0 7f164103d000-7f164103e000 r--p 00008000 08:02 11537741 /usr/lib64/libXrender.so.1.3.0 7f164103e000-7f164103f000 rw-p 00009000 08:02 11537741 /usr/lib64/libXrender.so.1.3.0 7f164103f000-7f1641177000 r-xp 00000000 08:02 11537733 /usr/lib64/libX11.so.6.3.0 7f1641177000-7f1641377000 ---p 00138000 08:02 11537733 /usr/lib64/libX11.so.6.3.0 7f1641377000-7f1641378000 r--p 00138000 08:02 11537733 /usr/lib64/libX11.so.6.3.0 7f1641378000-7f164137d000 rw-p 00139000 08:02 11537733 /usr/lib64/libX11.so.6.3.0 7f164137d000-7f164138e000 r-xp 00000000 08:02 11537735 /usr/lib64/libXext.so.6.4.0 7f164138e000-7f164158d000 ---p 00011000 08:02 11537735 /usr/lib64/libXext.so.6.4.0 7f164158d000-7f164158e000 r--p 00010000 08:02 11537735 /usr/lib64/libXext.so.6.4.0 7f164158e000-7f164158f000 rw-p 00011000 08:02 11537735 /usr/lib64/libXext.so.6.4.0 7f164158f000-7f1641590000 r--s 00006000 08:02 9853486 /export/apps/xtools/LNKD-intellij-2019.1/lib/ant/lib/ant-testutil.jar 7f1641590000-7f1641591000 r--s 00002000 08:02 9853451 /export/apps/xtools/LNKD-intellij-2019.1/lib/ant/lib/ant-apache-oro.jar 7f1641591000-7f1641593000 r--s 0000f000 08:02 9853617 /export/apps/xtools/LNKD-intellij-2019.1/lib/maven-aether-provider-3.3.9.jar 7f1641593000-7f1641594000 r--s 00008000 08:02 9853687 /export/apps/xtools/LNKD-intellij-2019.1/lib/stax-ex-1.8.jar 7f1641594000-7f1641598000 r--s 0001a000 08:02 9853509 /export/apps/xtools/LNKD-intellij-2019.1/lib/common-lang-3.4.1.jar 7f1641598000-7f16415a7000 r--s 0006b000 08:02 9853690 /export/apps/xtools/LNKD-intellij-2019.1/lib/trang-core.jar 7f16415a7000-7f1641601000 r-xp 00000000 08:02 11017739 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libawt_xawt.so 7f1641601000-7f1641801000 ---p 0005a000 08:02 11017739 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libawt_xawt.so 7f1641801000-7f1641802000 r--p 0005a000 08:02 11017739 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libawt_xawt.so 7f1641802000-7f1641805000 rw-p 0005b000 08:02 11017739 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libawt_xawt.so 7f1641805000-7f1641807000 rw-p 00000000 00:00 0 7f1641807000-7f16418a7000 r-xp 00000000 08:02 11017728 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libawt.so 7f16418a7000-7f1641aa6000 ---p 000a0000 08:02 11017728 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libawt.so 7f1641aa6000-7f1641aa7000 r--p 0009f000 08:02 11017728 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libawt.so 7f1641aa7000-7f1641ab2000 rw-p 000a0000 08:02 11017728 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libawt.so 7f1641ab2000-7f1641ad7000 rw-p 00000000 00:00 0 7f1641ad7000-7f1648000000 r--p 00000000 08:02 11818625 /usr/lib/locale/locale-archive 7f1648000000-7f1648021000 rw-p 00000000 00:00 0 7f1648021000-7f164c000000 ---p 00000000 00:00 0 7f164c000000-7f164c021000 rw-p 00000000 00:00 0 7f164c021000-7f1650000000 ---p 00000000 00:00 0 7f1650000000-7f1650021000 rw-p 00000000 00:00 0 7f1650021000-7f1654000000 ---p 00000000 00:00 0 7f1654000000-7f1654182000 rw-p 00000000 00:00 0 7f1654182000-7f1658000000 ---p 00000000 00:00 0 7f1658000000-7f1658021000 rw-p 00000000 00:00 0 7f1658021000-7f165c000000 ---p 00000000 00:00 0 7f165c000000-7f165c021000 rw-p 00000000 00:00 0 7f165c021000-7f1660000000 ---p 00000000 00:00 0 7f1660000000-7f1660021000 rw-p 00000000 00:00 0 7f1660021000-7f1664000000 ---p 00000000 00:00 0 7f1664000000-7f1664001000 r--s 00004000 08:02 9853496 /export/apps/xtools/LNKD-intellij-2019.1/lib/asm-analysis-5.0.3.jar 7f1664001000-7f1664014000 r--s 00345000 08:02 11017700 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/resources.jar 7f1664014000-7f1664214000 rw-p 00000000 00:00 0 7f1664214000-7f1664229000 r-xp 00000000 08:02 11536130 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 7f1664229000-7f1664428000 ---p 00015000 08:02 11536130 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 7f1664428000-7f1664429000 r--p 00014000 08:02 11536130 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 7f1664429000-7f166442a000 rw-p 00015000 08:02 11536130 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 7f166442a000-7f166442c000 r--s 00006000 08:02 9853579 /export/apps/xtools/LNKD-intellij-2019.1/lib/jgoodies-common-1.4.0.jar 7f166442c000-7f1664431000 r--s 00077000 08:02 9853563 /export/apps/xtools/LNKD-intellij-2019.1/lib/javac2.jar 7f1664431000-7f1664433000 r--s 0000a000 08:02 9853671 /export/apps/xtools/LNKD-intellij-2019.1/lib/serviceMessages.jar 7f1664433000-7f1664435000 r--s 00009000 08:02 9853540 /export/apps/xtools/LNKD-intellij-2019.1/lib/httpmime-4.5.6.jar 7f1664435000-7f166443b000 r--s 0005b000 08:02 9853597 /export/apps/xtools/LNKD-intellij-2019.1/lib/jsoup-1.11.3.jar 7f166443b000-7f166443c000 r--p 00000000 00:00 0 7f166443c000-7f1664442000 r--s 0003f000 08:02 11017685 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/ext/sunjce_provider.jar 7f1664442000-7f166447a000 r-xp 00000000 08:02 11017762 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libsunec.so 7f166447a000-7f1664679000 ---p 00038000 08:02 11017762 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libsunec.so 7f1664679000-7f166467e000 r--p 00037000 08:02 11017762 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libsunec.so 7f166467e000-7f1664680000 rw-p 0003c000 08:02 11017762 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libsunec.so 7f1664680000-7f1665352000 rw-p 00000000 00:00 0 7f1665352000-7f1665368000 r-xp 00000000 08:02 11017720 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libnet.so 7f1665368000-7f1665567000 ---p 00016000 08:02 11017720 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libnet.so 7f1665567000-7f1665568000 r--p 00015000 08:02 11017720 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libnet.so 7f1665568000-7f1665569000 rw-p 00016000 08:02 11017720 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libnet.so 7f1665569000-7f166557a000 r-xp 00000000 08:02 11017704 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libnio.so 7f166557a000-7f1665779000 ---p 00011000 08:02 11017704 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libnio.so 7f1665779000-7f166577a000 r--p 00010000 08:02 11017704 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libnio.so 7f166577a000-7f166577b000 rw-p 00011000 08:02 11017704 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libnio.so 7f166577b000-7f166597b000 rw-p 00000000 00:00 0 7f166597b000-7f166597d000 r--s 00009000 08:02 11017680 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/ext/sunec.jar 7f166597d000-7f1665981000 r--s 0003b000 08:02 11017679 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/ext/sunpkcs11.jar 7f1665981000-7f1665986000 r--s 000a3000 08:02 11017795 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/jsse.jar 7f1665986000-7f1665989000 r--s 0001a000 08:02 11017804 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/jce.jar 7f1665989000-7f166598c000 ---p 00000000 00:00 0 7f166598c000-7f1665a8a000 rw-p 00000000 00:00 0 7f1665a8a000-7f1665b34000 r--s 010c6000 08:02 9853641 /export/apps/xtools/LNKD-intellij-2019.1/lib/platform-api.jar 7f1665b34000-7f1665b39000 r--s 00027000 08:02 9853621 /export/apps/xtools/LNKD-intellij-2019.1/lib/maven-model-builder-3.3.9.jar 7f1665b39000-7f1665b44000 r--s 00030000 08:02 9853520 /export/apps/xtools/LNKD-intellij-2019.1/lib/cucumber-java-1.2.5.jar 7f1665b44000-7f1665b54000 r--s 00149000 08:02 9853646 /export/apps/xtools/LNKD-intellij-2019.1/lib/protobuf-java-3.5.1.jar 7f1665b54000-7f1665b56000 r--s 00014000 08:02 9853577 /export/apps/xtools/LNKD-intellij-2019.1/lib/jettison-1.4.0.jar 7f1665b56000-7f1665b58000 r--s 0001b000 08:02 9853545 /export/apps/xtools/LNKD-intellij-2019.1/lib/idea_rt.jar 7f1665b58000-7f1665b5c000 r--s 0001c000 08:02 9853568 /export/apps/xtools/LNKD-intellij-2019.1/lib/jaxb-api-2.3.1.jar 7f1665b5c000-7f1665b5e000 r--s 00007000 08:02 9853633 /export/apps/xtools/LNKD-intellij-2019.1/lib/netty-resolver-4.1.32.Final.jar 7f1665b5e000-7f1665b67000 r--s 0005e000 08:02 9853658 /export/apps/xtools/LNKD-intellij-2019.1/lib/rd-core-0.191.46.jar 7f1665b67000-7f1665b81000 r--s 0021e000 08:02 9853581 /export/apps/xtools/LNKD-intellij-2019.1/lib/jna-platform.jar 7f1665b81000-7f1665b87000 r--s 0009d000 08:02 9853513 /export/apps/xtools/LNKD-intellij-2019.1/lib/commons-httpclient-3.1-patched.jar 7f1665b87000-7f1665b98000 r--s 000cc000 08:02 9853553 /export/apps/xtools/LNKD-intellij-2019.1/lib/intellij-test-discovery-agent-1.0.495.jar 7f1665b98000-7f1665b9a000 r--s 00005000 08:02 9853686 /export/apps/xtools/LNKD-intellij-2019.1/lib/stax-api-1.0.1.jar 7f1665b9a000-7f1665ba1000 r--s 0005a000 08:02 9853533 /export/apps/xtools/LNKD-intellij-2019.1/lib/fst-2.57.jar 7f1665ba1000-7f1665baf000 r--s 000aa000 08:02 9853514 /export/apps/xtools/LNKD-intellij-2019.1/lib/commons-imaging-1.0-RC-1.jar 7f1665baf000-7f1665bba000 r--s 00099000 08:02 9853703 /export/apps/xtools/LNKD-intellij-2019.1/lib/xmlgraphics-commons-2.3.jar 7f1665bba000-7f1665bbd000 r--s 00041000 08:02 9853628 /export/apps/xtools/LNKD-intellij-2019.1/lib/netty-buffer-4.1.32.Final.jar 7f1665bbd000-7f1665bd4000 r--s 000cf000 08:02 9853523 /export/apps/xtools/LNKD-intellij-2019.1/lib/dexlib2-2.2.1.jar 7f1665bd4000-7f1665bd6000 r--s 00000000 08:02 9853643 /export/apps/xtools/LNKD-intellij-2019.1/lib/plexus-component-annotations-1.6.jar 7f1665bd6000-7f1665bd7000 r--s 00009000 08:02 9853560 /export/apps/xtools/LNKD-intellij-2019.1/lib/java-compatibility-1.0.1.jar 7f1665bd7000-7f1665bdb000 r--s 0002f000 08:02 9853499 /export/apps/xtools/LNKD-intellij-2019.1/lib/automaton-1.12-1.jar 7f1665bdb000-7f1665bdc000 r--s 00000000 08:02 9853585 /export/apps/xtools/LNKD-intellij-2019.1/lib/jps-launcher.jar 7f1665bdc000-7f1665bdd000 r--s 0000c000 08:02 9853494 /export/apps/xtools/LNKD-intellij-2019.1/lib/asm-5.0.3.jar 7f1665bdd000-7f1665bdf000 r--s 00004000 08:02 9853543 /export/apps/xtools/LNKD-intellij-2019.1/lib/idea-jsp-openapi.jar 7f1665bdf000-7f1665be9000 r--s 00080000 08:02 9853630 /export/apps/xtools/LNKD-intellij-2019.1/lib/netty-codec-http-4.1.32.Final.jar 7f1665be9000-7f1665bec000 r--s 0000e000 08:02 9853556 /export/apps/xtools/LNKD-intellij-2019.1/lib/jackson-annotations-2.9.0.jar 7f1665bec000-7f1665bed000 r--s 00001000 08:02 9853593 /export/apps/xtools/LNKD-intellij-2019.1/lib/jsch.agentproxy.usocket-jna.jar 7f1665bed000-7f1665bee000 r--s 00000000 08:02 9853578 /export/apps/xtools/LNKD-intellij-2019.1/lib/jfr-reader-0.1.1.jar 7f1665bee000-7f1665bf1000 r--s 0000f000 08:02 9853547 /export/apps/xtools/LNKD-intellij-2019.1/lib/imageio-core-3.4.1.jar 7f1665bf1000-7f1665bf5000 r--s 0001d000 08:02 9853623 /export/apps/xtools/LNKD-intellij-2019.1/lib/microba.jar 7f1665bf5000-7f1665bf6000 r--s 00006000 08:02 9853607 /export/apps/xtools/LNKD-intellij-2019.1/lib/kotlin-test-1.3.11.jar 7f1665bf6000-7f1665d09000 r--s 024da000 08:02 9853544 /export/apps/xtools/LNKD-intellij-2019.1/lib/idea.jar 7f1665d09000-7f1665d14000 r--s 00086000 08:02 9853512 /export/apps/xtools/LNKD-intellij-2019.1/lib/commons-compress-1.18.jar 7f1665d14000-7f1665d18000 r--s 0065a000 08:02 9853676 /export/apps/xtools/LNKD-intellij-2019.1/lib/sqlite-jdbc-3.21.0.1.jar 7f1665d18000-7f1665d19000 r--s 00003000 08:02 9853529 /export/apps/xtools/LNKD-intellij-2019.1/lib/external-system-rt.jar 7f1665d19000-7f1665d1c000 r--s 00017000 08:02 9853551 /export/apps/xtools/LNKD-intellij-2019.1/lib/ini4j-0.5.5-2.jar 7f1665d1c000-7f1665d1e000 r--s 00002000 08:02 9853611 /export/apps/xtools/LNKD-intellij-2019.1/lib/kotlinx-coroutines-jdk8-1.0.1.jar 7f1665d1e000-7f1665d24000 r--s 00048000 08:02 9853629 /export/apps/xtools/LNKD-intellij-2019.1/lib/netty-codec-4.1.32.Final.jar 7f1665d24000-7f1665d28000 r--s 00027000 08:02 9853426 /export/apps/xtools/LNKD-intellij-2019.1/lib/aether-impl-1.1.0.jar 7f1665d28000-7f1665d30000 r--s 00066000 08:02 9853696 /export/apps/xtools/LNKD-intellij-2019.1/lib/velocity-1.7.jar 7f1665d30000-7f1665d6e000 r--s 0025d000 08:02 9853702 /export/apps/xtools/LNKD-intellij-2019.1/lib/xmlbeans-2.6.0.jar 7f1665d6e000-7f1665d6f000 r--s 000b5000 08:02 9853521 /export/apps/xtools/LNKD-intellij-2019.1/lib/debugger-memory-agent-0.0.11.jar 7f1665d6f000-7f1665d82000 r--s 002a7000 08:02 9853584 /export/apps/xtools/LNKD-intellij-2019.1/lib/jps-builders.jar 7f1665d82000-7f1665d85000 r--s 0000f000 08:02 9853693 /export/apps/xtools/LNKD-intellij-2019.1/lib/txw2-2.3.1.jar 7f1665d85000-7f1665d8f000 r--s 00068000 08:02 9853634 /export/apps/xtools/LNKD-intellij-2019.1/lib/netty-transport-4.1.32.Final.jar 7f1665d8f000-7f1665d91000 r--s 00001000 08:02 9853589 /export/apps/xtools/LNKD-intellij-2019.1/lib/jsch.agentproxy.core.jar 7f1665d91000-7f1665d96000 r--s 0001d000 08:02 9853423 /export/apps/xtools/LNKD-intellij-2019.1/lib/aether-api-1.1.0.jar 7f1665d96000-7f1665d99000 r--s 00013000 08:02 9853531 /export/apps/xtools/LNKD-intellij-2019.1/lib/forms-1.1-preview.jar 7f1665d99000-7f1665de4000 r--s 003ce000 08:02 9853501 /export/apps/xtools/LNKD-intellij-2019.1/lib/batik-all-1.10.jar 7f1665de4000-7f1665df1000 r--s 000af000 08:02 9853538 /export/apps/xtools/LNKD-intellij-2019.1/lib/httpclient-4.5.6.jar 7f1665df1000-7f1665df3000 r--s 00010000 08:02 9853694 /export/apps/xtools/LNKD-intellij-2019.1/lib/util-2.2.1.jar 7f1665df3000-7f1665df5000 r--s 00007000 08:02 9853616 /export/apps/xtools/LNKD-intellij-2019.1/lib/markdownj-core-0.4.2-SNAPSHOT.jar 7f1665df5000-7f1665dff000 r--s 000ab000 08:02 9853565 /export/apps/xtools/LNKD-intellij-2019.1/lib/javassist-3.22.0-GA.jar 7f1665dff000-7f1665e0c000 r--s 00083000 08:02 9853511 /export/apps/xtools/LNKD-intellij-2019.1/lib/commons-collections-3.2.2.jar 7f1665e0c000-7f1665e0d000 r--s 00002000 08:02 9853588 /export/apps/xtools/LNKD-intellij-2019.1/lib/jsch.agentproxy.connector-factory.jar 7f1665e0d000-7f1665e14000 r--s 0003d000 08:02 9853575 /export/apps/xtools/LNKD-intellij-2019.1/lib/jediterm-pty-2.14.jar 7f1665e14000-7f1665e16000 r--s 00019000 08:02 9853624 /export/apps/xtools/LNKD-intellij-2019.1/lib/miglayout-core-5.2.jar 7f1665e16000-7f1665e18000 r--s 00009000 08:02 9853673 /export/apps/xtools/LNKD-intellij-2019.1/lib/slf4j-api-1.7.25.jar 7f1665e18000-7f1665e2b000 r--s 0010e000 08:02 9853603 /export/apps/xtools/LNKD-intellij-2019.1/lib/kotlin-stdlib-1.3.11.jar 7f1665e2b000-7f1665e2d000 r--s 00005000 08:02 9853567 /export/apps/xtools/LNKD-intellij-2019.1/lib/javax.annotation-api-1.3.2.jar 7f1665e2d000-7f1665e34000 r--s 00064000 08:02 9853517 /export/apps/xtools/LNKD-intellij-2019.1/lib/commons-lang3-3.4.jar 7f1665e34000-7f1665e3b000 r--s 00049000 08:02 9853539 /export/apps/xtools/LNKD-intellij-2019.1/lib/httpcore-4.4.10.jar 7f1665e3b000-7f1665e3c000 r--s 00001000 08:02 9853591 /export/apps/xtools/LNKD-intellij-2019.1/lib/jsch.agentproxy.pageant.jar 7f1665e3c000-7f1665e3e000 r--s 00038000 08:02 9853614 /export/apps/xtools/LNKD-intellij-2019.1/lib/lz4-1.3.0.jar 7f1665e3e000-7f1665e4a000 r--s 000b4000 08:02 9853609 /export/apps/xtools/LNKD-intellij-2019.1/lib/kotlinx-coroutines-core-1.0.1.jar 7f1665e4a000-7f1665e4b000 r--s 00003000 08:02 9853619 /export/apps/xtools/LNKD-intellij-2019.1/lib/maven-builder-support-3.3.9.jar 7f1665e4b000-7f1665e50000 r--s 00088000 08:02 9853516 /export/apps/xtools/LNKD-intellij-2019.1/lib/commons-lang-2.4.jar 7f1665e50000-7f1665e59000 r--s 00087000 08:02 9853564 /export/apps/xtools/LNKD-intellij-2019.1/lib/javahelp-2.0.02.jar 7f1665e59000-7f1665e5b000 r--s 00005000 08:02 9853596 /export/apps/xtools/LNKD-intellij-2019.1/lib/jshell-protocol.jar 7f1665e5b000-7f1665e70000 r--s 002d2000 08:02 9853546 /export/apps/xtools/LNKD-intellij-2019.1/lib/ideax.jar 7f1665e70000-7f1665e74000 r--s 00046000 08:02 9853688 /export/apps/xtools/LNKD-intellij-2019.1/lib/streamex-0.6.7.jar 7f1665e74000-7f1665e83000 r--s 00068000 08:02 9853580 /export/apps/xtools/LNKD-intellij-2019.1/lib/jing-20030619.jar 7f1665e83000-7f1665e86000 r--s 0001b000 08:02 9853639 /export/apps/xtools/LNKD-intellij-2019.1/lib/oro-2.0.8.jar 7f1665e86000-7f1665e89000 r--s 00154000 08:02 9853648 /export/apps/xtools/LNKD-intellij-2019.1/lib/pty4j-0.9.3.jar 7f1665e89000-7f1665e9d000 r--s 00291000 08:02 9853528 /export/apps/xtools/LNKD-intellij-2019.1/lib/external-system-impl.jar 7f1665e9d000-7f1665ef9000 r--s 003a8000 08:02 9853541 /export/apps/xtools/LNKD-intellij-2019.1/lib/icons.jar 7f1665ef9000-7f1665efa000 r--s 00000000 08:02 9853572 /export/apps/xtools/LNKD-intellij-2019.1/lib/jcip-annotations-1.0.jar 7f1665efa000-7f1665f00000 r--s 00033000 08:02 9853570 /export/apps/xtools/LNKD-intellij-2019.1/lib/jaxen-1.1.6.jar 7f1665f00000-7f1665f04000 r--s 0053d000 08:02 9853660 /export/apps/xtools/LNKD-intellij-2019.1/lib/resources.jar 7f1665f04000-7f1665f07000 r--s 00011000 08:02 9853522 /export/apps/xtools/LNKD-intellij-2019.1/lib/delight-rhino-sandbox-0.0.9.jar 7f1665f07000-7f1665f0b000 r--s 00041000 08:02 9853587 /export/apps/xtools/LNKD-intellij-2019.1/lib/jsch-0.1.55.jar 7f1665f0b000-7f1665f41000 r--s 00250000 08:02 9853602 /export/apps/xtools/LNKD-intellij-2019.1/lib/kotlin-reflect-1.3.11.jar 7f1665f41000-7f1665f43000 r--s 00000000 08:02 9853590 /export/apps/xtools/LNKD-intellij-2019.1/lib/jsch.agentproxy.jsch.jar 7f1665f43000-7f1665f45000 r--s 0000e000 08:02 9853615 /export/apps/xtools/LNKD-intellij-2019.1/lib/markdown4j-2.2-cj-1.1.jar 7f1665f45000-7f1665f4c000 r--s 0004f000 08:02 9853504 /export/apps/xtools/LNKD-intellij-2019.1/lib/cglib-nodep-3.2.4.jar 7f1665f4c000-7f1665f50000 r--s 00038000 08:02 9853645 /export/apps/xtools/LNKD-intellij-2019.1/lib/plexus-utils-3.0.22.jar 7f1665f50000-7f16661c5000 r--s 06021000 08:02 9853642 /export/apps/xtools/LNKD-intellij-2019.1/lib/platform-impl.jar 7f16661c5000-7f16661c9000 r--s 0004c000 08:02 9853557 /export/apps/xtools/LNKD-intellij-2019.1/lib/jackson-core-2.9.7.jar 7f16661c9000-7f16661cb000 r--s 0000c000 08:02 9853618 /export/apps/xtools/LNKD-intellij-2019.1/lib/maven-artifact-3.3.9.jar 7f16661cb000-7f1666223000 r--s 003a7000 08:02 9853502 /export/apps/xtools/LNKD-intellij-2019.1/lib/bcprov-jdk15on-1.60.jar 7f1666223000-7f1666224000 r--s 00036000 08:02 9853698 /export/apps/xtools/LNKD-intellij-2019.1/lib/winp-1.28.jar 7f1666224000-7f1666227000 r--s 00014000 08:02 9853508 /export/apps/xtools/LNKD-intellij-2019.1/lib/common-io-3.4.1.jar 7f1666227000-7f1666229000 r--s 00010000 08:02 9853601 /export/apps/xtools/LNKD-intellij-2019.1/lib/jzlib-1.1.3.jar 7f1666229000-7f166622d000 r--s 00021000 08:02 9853430 /export/apps/xtools/LNKD-intellij-2019.1/lib/aether-util-1.1.0.jar 7f166622d000-7f1666230000 r--s 00011000 08:02 9853566 /export/apps/xtools/LNKD-intellij-2019.1/lib/javax.activation-1.2.0.jar 7f1666230000-7f1666237000 r--s 00035000 08:02 9853670 /export/apps/xtools/LNKD-intellij-2019.1/lib/sa-jdwp-1.12.jar 7f1666237000-7f166623a000 r--s 0001b000 08:02 9853600 /export/apps/xtools/LNKD-intellij-2019.1/lib/junit.jar 7f166623a000-7f1666240000 r--s 00047000 08:02 9853421 /export/apps/xtools/LNKD-intellij-2019.1/lib/FastInfoset-1.2.15.jar 7f1666240000-7f1666241000 r--s 0000e000 08:02 9853532 /export/apps/xtools/LNKD-intellij-2019.1/lib/forms_rt.jar 7f1666241000-7f1666244000 r--s 00019000 08:02 9853640 /export/apps/xtools/LNKD-intellij-2019.1/lib/picocontainer-1.2.jar 7f1666244000-7f1666247000 r--s 0001c000 08:02 9853500 /export/apps/xtools/LNKD-intellij-2019.1/lib/baksmali-2.2.1.jar 7f1666247000-7f166625f000 r--s 00299000 08:02 9853524 /export/apps/xtools/LNKD-intellij-2019.1/lib/ecj-4.10.jar 7f166625f000-7f16662d0000 r--s 00665000 08:02 9853534 /export/apps/xtools/LNKD-intellij-2019.1/lib/groovy-all-2.4.15.jar 7f16662d0000-7f16662d1000 r--s 00008000 08:02 9853424 /export/apps/xtools/LNKD-intellij-2019.1/lib/aether-connector-basic-1.1.0.jar 7f16662d1000-7f16662d3000 r--s 00012000 08:02 9853576 /export/apps/xtools/LNKD-intellij-2019.1/lib/jetCheck-0.2.1.jar 7f16662d3000-7f16662de000 r--s 00087000 08:02 9853637 /export/apps/xtools/LNKD-intellij-2019.1/lib/org.eclipse.lsp4j-0.7.1.jar 7f16662de000-7f16662e0000 r--s 0000c000 08:02 9853425 /export/apps/xtools/LNKD-intellij-2019.1/lib/aether-dependency-resolver.jar 7f16662e0000-7f16662e2000 r--s 00001000 08:02 9853428 /export/apps/xtools/LNKD-intellij-2019.1/lib/aether-transport-file-1.1.0.jar 7f16662e2000-7f16662f3000 r--s 000cc000 08:02 9853552 /export/apps/xtools/LNKD-intellij-2019.1/lib/intellij-coverage-agent-1.0.495.jar 7f16662f3000-7f16662f5000 r--s 00003000 08:02 9853431 /export/apps/xtools/LNKD-intellij-2019.1/lib/annotations.jar 7f16662f5000-7f16662f7000 r--s 00006000 08:02 9853497 /export/apps/xtools/LNKD-intellij-2019.1/lib/asm-tree-5.0.3.jar 7f16662f7000-7f16662f8000 r--s 00004000 08:02 9853571 /export/apps/xtools/LNKD-intellij-2019.1/lib/jbcrypt-1.0.0.jar 7f16662f8000-7f16662fd000 r--s 00036000 08:02 9853535 /export/apps/xtools/LNKD-intellij-2019.1/lib/gson-2.8.5.jar 7f16662fd000-7f16662ff000 r--s 0004f000 08:02 9853672 /export/apps/xtools/LNKD-intellij-2019.1/lib/servlet-api.jar 7f16662ff000-7f1666300000 r--s 00005000 08:02 9853506 /export/apps/xtools/LNKD-intellij-2019.1/lib/cloud-config-client.jar 7f1666300000-7f1666302000 r--s 00002000 08:02 9853606 /export/apps/xtools/LNKD-intellij-2019.1/lib/kotlin-stdlib-jdk8-1.3.11.jar 7f1666302000-7f166630a000 r--s 0005e000 08:02 9853659 /export/apps/xtools/LNKD-intellij-2019.1/lib/rd-framework-0.191.46.jar 7f166630a000-7f166630c000 r--s 0000c000 08:02 9853635 /export/apps/xtools/LNKD-intellij-2019.1/lib/objenesis-2.6.jar 7f166630c000-7f1666310000 r--s 00031000 08:02 9853515 /export/apps/xtools/LNKD-intellij-2019.1/lib/commons-io-2.6.jar 7f1666310000-7f1666317000 r--s 0001e000 08:02 9853604 /export/apps/xtools/LNKD-intellij-2019.1/lib/kotlin-stdlib-common-1.3.11.jar 7f1666317000-7f166631d000 r--s 00049000 08:02 9853691 /export/apps/xtools/LNKD-intellij-2019.1/lib/trilead-ssh2-build-217-jenkins-11.jar 7f166631d000-7f1666324000 r--s 00043000 08:02 9853663 /export/apps/xtools/LNKD-intellij-2019.1/lib/rngom-20051226-patched.jar 7f1666324000-7f166633d000 r--s 0013a000 08:02 9853699 /export/apps/xtools/LNKD-intellij-2019.1/lib/xercesImpl-2.12.0.jar 7f166633d000-7f1666340000 r--s 0002d000 08:02 9853554 /export/apps/xtools/LNKD-intellij-2019.1/lib/isorelax-20030108.jar 7f1666340000-7f166635b000 r--s 00147000 08:02 9853689 /export/apps/xtools/LNKD-intellij-2019.1/lib/swingx-core-1.6.2-2.jar 7f166635b000-7f166635c000 r--s 00001000 08:02 9853704 /export/apps/xtools/LNKD-intellij-2019.1/lib/xmlpull-1.1.3.1.jar 7f166635c000-7f166635e000 r--s 0001d000 08:02 9853627 /export/apps/xtools/LNKD-intellij-2019.1/lib/nekohtml-1.9.22.jar 7f166635e000-7f166635f000 r--s 00001000 08:02 9853594 /export/apps/xtools/LNKD-intellij-2019.1/lib/jsch.agentproxy.usocket-nc.jar 7f166635f000-7f1666361000 r--s 0000e000 08:02 9853525 /export/apps/xtools/LNKD-intellij-2019.1/lib/eddsa-0.2.0.jar 7f1666361000-7f1666362000 r--s 00001000 08:02 9853595 /export/apps/xtools/LNKD-intellij-2019.1/lib/jshell-frontend.jar 7f1666362000-7f1666363000 r--s 00007000 08:02 9853530 /export/apps/xtools/LNKD-intellij-2019.1/lib/fluent-hc-4.5.6.jar 7f1666363000-7f1666365000 r--s 00011000 08:02 9853548 /export/apps/xtools/LNKD-intellij-2019.1/lib/imageio-metadata-3.4.1.jar 7f1666365000-7f1666366000 r--s 00005000 08:02 9853625 /export/apps/xtools/LNKD-intellij-2019.1/lib/miglayout-swing-5.2.jar 7f1666366000-7f1666367000 r--s 00000000 08:02 9853608 /export/apps/xtools/LNKD-intellij-2019.1/lib/kotlin-test-common-1.3.11.jar 7f1666367000-7f1666374000 r--s 00125000 08:02 9853662 /export/apps/xtools/LNKD-intellij-2019.1/lib/rhino-1.7.10.jar 7f1666374000-7f16663b4000 r--s 004c7000 08:02 9853636 /export/apps/xtools/LNKD-intellij-2019.1/lib/openapi.jar 7f16663b4000-7f16663c8000 r--s 000f7000 08:02 9853569 /export/apps/xtools/LNKD-intellij-2019.1/lib/jaxb-runtime-2.3.1.jar 7f16663c8000-7f16663d6000 r--s 00082000 08:02 9853707 /export/apps/xtools/LNKD-intellij-2019.1/lib/xstream-1.4.10.jar 7f16663d6000-7f16663db000 r--s 00012000 08:02 9853610 /export/apps/xtools/LNKD-intellij-2019.1/lib/kotlinx-coroutines-core-common-1.0.1.jar 7f16663db000-7f16663dd000 r--s 00018000 08:02 9853549 /export/apps/xtools/LNKD-intellij-2019.1/lib/imageio-tiff-3.4.1.jar 7f16663dd000-7f16663e5000 r--s 00045000 08:02 9853599 /export/apps/xtools/LNKD-intellij-2019.1/lib/junit-4.12.jar 7f16663e5000-7f16663e7000 r--s 0000b000 08:02 9853598 /export/apps/xtools/LNKD-intellij-2019.1/lib/jsp-api.jar 7f16663e7000-7f16663e9000 r--s 00007000 08:02 9853573 /export/apps/xtools/LNKD-intellij-2019.1/lib/jdkAnnotations.jar 7f16663e9000-7f16663ea000 r--s 00006000 08:02 9853622 /export/apps/xtools/LNKD-intellij-2019.1/lib/maven-repository-metadata-3.3.9.jar 7f16663ea000-7f1666412000 r--s 000f8000 08:02 9853562 /export/apps/xtools/LNKD-intellij-2019.1/lib/java_resources_en.jar 7f1666412000-7f1666425000 r--s 00137000 08:02 9853558 /export/apps/xtools/LNKD-intellij-2019.1/lib/jackson-databind-2.9.7.jar 7f1666425000-7f1666426000 r--s 00003000 08:02 9853505 /export/apps/xtools/LNKD-intellij-2019.1/lib/cli-parser-1.1.2.jar 7f1666426000-7f166642e000 r--s 0005f000 08:02 9853632 /export/apps/xtools/LNKD-intellij-2019.1/lib/netty-handler-4.1.32.Final.jar 7f166642e000-7f1666430000 r--s 00006000 08:02 9853427 /export/apps/xtools/LNKD-intellij-2019.1/lib/aether-spi-1.1.0.jar 7f1666430000-7f1666434000 r--s 00034000 08:02 9853705 /export/apps/xtools/LNKD-intellij-2019.1/lib/xmlrpc-2.0.1.jar 7f1666434000-7f1666435000 r--s 00008000 08:02 9853429 /export/apps/xtools/LNKD-intellij-2019.1/lib/aether-transport-http-1.1.0.jar 7f1666435000-7f166643c000 r--s 0003f000 08:02 9853510 /export/apps/xtools/LNKD-intellij-2019.1/lib/commons-codec-1.10.jar 7f166643c000-7f1666449000 r--s 00083000 08:02 9853631 /export/apps/xtools/LNKD-intellij-2019.1/lib/netty-common-4.1.32.Final.jar 7f1666449000-7f166644a000 r--s 0000a000 08:02 9853612 /export/apps/xtools/LNKD-intellij-2019.1/lib/kxml2-2.3.0.jar 7f166644a000-7f166644d000 r--s 0000d000 08:02 9853644 /export/apps/xtools/LNKD-intellij-2019.1/lib/plexus-interpolation-1.21.jar 7f166644d000-7f1666454000 r--s 00043000 08:02 9853675 /export/apps/xtools/LNKD-intellij-2019.1/lib/snakeyaml-1.23.jar 7f1666454000-7f166647b000 r--s 00251000 08:02 9853542 /export/apps/xtools/LNKD-intellij-2019.1/lib/ide-model-0.191.24.jar 7f166647b000-7f166647d000 r--s 00005000 08:02 9853706 /export/apps/xtools/LNKD-intellij-2019.1/lib/xpp3_min-1.1.4c.jar 7f166647d000-7f166647f000 r--s 00000000 08:02 9853592 /export/apps/xtools/LNKD-intellij-2019.1/lib/jsch.agentproxy.sshagent.jar 7f166647f000-7f1666484000 r--s 00021000 08:02 9853647 /export/apps/xtools/LNKD-intellij-2019.1/lib/proxy-vole-1.0.6.jar 7f1666484000-7f1666486000 r--s 00013000 08:02 9853701 /export/apps/xtools/LNKD-intellij-2019.1/lib/xml-resolver-1.2.jar 7f1666486000-7f1666489000 r--s 00020000 08:02 9853657 /export/apps/xtools/LNKD-intellij-2019.1/lib/purejavacomm-0.0.11.1.jar 7f1666489000-7f166648c000 r--s 0001d000 08:02 9853638 /export/apps/xtools/LNKD-intellij-2019.1/lib/org.eclipse.lsp4j.jsonrpc-0.7.1.jar 7f166648c000-7f1666494000 r--s 000e2000 08:02 9853586 /export/apps/xtools/LNKD-intellij-2019.1/lib/jps-model.jar 7f1666494000-7f1666499000 r--s 00010000 08:02 9853700 /export/apps/xtools/LNKD-intellij-2019.1/lib/xml-apis-ext-1.3.04.jar 7f1666499000-7f166649f000 r--s 0009d000 08:02 9853583 /export/apps/xtools/LNKD-intellij-2019.1/lib/jps-builders-6.jar 7f166649f000-7f16664a1000 r--s 00010000 08:02 9853697 /export/apps/xtools/LNKD-intellij-2019.1/lib/wadl-core.jar 7f16664a1000-7f16664a4000 r--s 0003c000 08:02 9853709 /export/apps/xtools/LNKD-intellij-2019.1/lib/yjp-controller-api-redist.jar 7f16664a4000-7f16664a6000 r--s 00021000 08:02 9853518 /export/apps/xtools/LNKD-intellij-2019.1/lib/commons-logging-1.2.jar 7f16664a6000-7f16665bd000 r--s 02b35000 08:02 9853561 /export/apps/xtools/LNKD-intellij-2019.1/lib/java-impl.jar 7f16665bd000-7f16665be000 r--s 00000000 08:02 9853605 /export/apps/xtools/LNKD-intellij-2019.1/lib/kotlin-stdlib-jdk7-1.3.11.jar 7f16665be000-7f16665c3000 r--s 00053000 08:02 9853495 /export/apps/xtools/LNKD-intellij-2019.1/lib/asm-all-7.0.1.jar 7f16665c3000-7f16665f5000 r--s 0026a000 08:02 9853536 /export/apps/xtools/LNKD-intellij-2019.1/lib/guava-25.1-jre.jar 7f16665f5000-7f16665f8000 r--s 00013000 08:02 9853507 /export/apps/xtools/LNKD-intellij-2019.1/lib/common-image-3.4.1.jar 7f16665f8000-7f16665f9000 ---p 00000000 00:00 0 7f16665f9000-7f16666f9000 rw-p 00000000 00:00 0 7f16666f9000-7f16666fc000 ---p 00000000 00:00 0 7f16666fc000-7f16667fa000 rw-p 00000000 00:00 0 7f16667fa000-7f16667fd000 ---p 00000000 00:00 0 7f16667fd000-7f16668fb000 rw-p 00000000 00:00 0 7f16668fb000-7f16668fe000 ---p 00000000 00:00 0 7f16668fe000-7f16669fc000 rw-p 00000000 00:00 0 7f16669fc000-7f16669ff000 ---p 00000000 00:00 0 7f16669ff000-7f1666afd000 rw-p 00000000 00:00 0 7f1666afd000-7f1666b00000 ---p 00000000 00:00 0 7f1666b00000-7f1666bfe000 rw-p 00000000 00:00 0 7f1666bfe000-7f1666c01000 ---p 00000000 00:00 0 7f1666c01000-7f1670000000 rw-p 00000000 00:00 0 7f1670000000-7f1670021000 rw-p 00000000 00:00 0 7f1670021000-7f1674000000 ---p 00000000 00:00 0 7f1674000000-7f1674002000 r--s 00002000 08:02 9853526 /export/apps/xtools/LNKD-intellij-2019.1/lib/error_prone_annotations-2.3.1.jar 7f1674002000-7f167407c000 r--s 010fd000 08:02 12202839 /export/apps/xtools/LNKD-intellij-2019.1/jre64/lib/tools.jar 7f167407c000-7f167407f000 ---p 00000000 00:00 0 7f167407f000-7f167417d000 rw-p 00000000 00:00 0 7f167417d000-7f1674180000 ---p 00000000 00:00 0 7f1674180000-7f167427e000 rw-p 00000000 00:00 0 7f167427e000-7f1674281000 ---p 00000000 00:00 0 7f1674281000-7f167437f000 rw-p 00000000 00:00 0 7f167437f000-7f1674380000 ---p 00000000 00:00 0 7f1674380000-7f1674480000 rw-p 00000000 00:00 0 7f1674480000-7f167465a000 r--s 03d6d000 08:02 11017634 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/rt.jar 7f167465a000-7f1674f29000 rw-p 00000000 00:00 0 7f1674f29000-7f1674f2b000 ---p 00000000 00:00 0 7f1674f2b000-7f16751c3000 rw-p 00000000 00:00 0 7f16751c3000-7f16751c4000 ---p 00000000 00:00 0 7f16751c4000-7f1675cce000 rw-p 00000000 00:00 0 7f1675cce000-7f1675ccf000 ---p 00000000 00:00 0 7f1675ccf000-7f1675dcf000 rw-p 00000000 00:00 0 7f1675dcf000-7f1675dd0000 ---p 00000000 00:00 0 7f1675dd0000-7f1675ed0000 rw-p 00000000 00:00 0 7f1675ed0000-7f1675ed1000 ---p 00000000 00:00 0 7f1675ed1000-7f1676204000 rw-p 00000000 00:00 0 7f1676204000-7f1676fff000 ---p 00000000 00:00 0 7f1676fff000-7f1677205000 rw-p 00000000 00:00 0 7f1677205000-7f1677fff000 ---p 00000000 00:00 0 7f1677fff000-7f1678000000 rw-p 00000000 00:00 0 7f1678000000-7f1678021000 rw-p 00000000 00:00 0 7f1678021000-7f167c000000 ---p 00000000 00:00 0 7f167c000000-7f167c021000 rw-p 00000000 00:00 0 7f167c021000-7f1680000000 ---p 00000000 00:00 0 7f1680000000-7f1680021000 rw-p 00000000 00:00 0 7f1680021000-7f1684000000 ---p 00000000 00:00 0 7f1684000000-7f1684021000 rw-p 00000000 00:00 0 7f1684021000-7f1688000000 ---p 00000000 00:00 0 7f1688000000-7f1688021000 rw-p 00000000 00:00 0 7f1688021000-7f168c000000 ---p 00000000 00:00 0 7f168c000000-7f168c021000 rw-p 00000000 00:00 0 7f168c021000-7f1690000000 ---p 00000000 00:00 0 7f1690000000-7f1690021000 rw-p 00000000 00:00 0 7f1690021000-7f1694000000 ---p 00000000 00:00 0 7f1694000000-7f1694021000 rw-p 00000000 00:00 0 7f1694021000-7f1698000000 ---p 00000000 00:00 0 7f1698000000-7f1698021000 rw-p 00000000 00:00 0 7f1698021000-7f169c000000 ---p 00000000 00:00 0 7f169c000000-7f169c001000 r--s 00022000 08:02 9853498 /export/apps/xtools/LNKD-intellij-2019.1/lib/async-profiler-1.5-ea.jar 7f169c001000-7f169c004000 r--s 00026000 08:02 9853620 /export/apps/xtools/LNKD-intellij-2019.1/lib/maven-model-3.3.9.jar 7f169c004000-7f169c006000 r--s 00009000 08:02 9853537 /export/apps/xtools/LNKD-intellij-2019.1/lib/hamcrest-core-1.3.jar 7f169c006000-7f169c00a000 r--s 00017000 08:02 9853708 /export/apps/xtools/LNKD-intellij-2019.1/lib/xz-1.8.jar 7f169c00a000-7f169c00e000 r--s 003c2000 08:02 9853582 /export/apps/xtools/LNKD-intellij-2019.1/lib/jna.jar 7f169c00e000-7f169c019000 r--s 00112000 08:02 9853692 /export/apps/xtools/LNKD-intellij-2019.1/lib/trove4j.jar 7f169c019000-7f169c04b000 r--s 0067b000 08:02 9853695 /export/apps/xtools/LNKD-intellij-2019.1/lib/util.jar 7f169c04b000-7f169cafb000 rw-p 00000000 00:00 0 7f169cafb000-7f169cafc000 ---p 00000000 00:00 0 7f169cafc000-7f169cbfc000 rw-p 00000000 00:00 0 7f169cbfc000-7f169cbfd000 ---p 00000000 00:00 0 7f169cbfd000-7f169ccfd000 rw-p 00000000 00:00 0 7f169ccfd000-7f169ccfe000 ---p 00000000 00:00 0 7f169ccfe000-7f169cdfe000 rw-p 00000000 00:00 0 7f169cdfe000-7f169cdff000 ---p 00000000 00:00 0 7f169cdff000-7f169ceff000 rw-p 00000000 00:00 0 7f169ceff000-7f169cf00000 ---p 00000000 00:00 0 7f169cf00000-7f169d000000 rw-p 00000000 00:00 0 7f169d000000-7f16a0150000 rwxp 00000000 00:00 0 7f16a0150000-7f16ac000000 ---p 00000000 00:00 0 7f16ac000000-7f16ac515000 rw-p 00000000 00:00 0 7f16ac515000-7f16b0000000 ---p 00000000 00:00 0 7f16b0000000-7f16b0001000 r--s 00002000 08:02 9853674 /export/apps/xtools/LNKD-intellij-2019.1/lib/slf4j-log4j12-1.7.25.jar 7f16b0001000-7f16b0003000 r--s 0000e000 08:02 9853626 /export/apps/xtools/LNKD-intellij-2019.1/lib/nanoxml-2.2.3.jar 7f16b0003000-7f16b00a5000 rw-p 00000000 00:00 0 7f16b00a5000-7f16b00a6000 ---p 00000000 00:00 0 7f16b00a6000-7f16b01a6000 rw-p 00000000 00:00 0 7f16b01a6000-7f16b01a7000 ---p 00000000 00:00 0 7f16b01a7000-7f16b02a7000 rw-p 00000000 00:00 0 7f16b02a7000-7f16b02a8000 ---p 00000000 00:00 0 7f16b02a8000-7f16b03a8000 rw-p 00000000 00:00 0 7f16b03a8000-7f16b03a9000 ---p 00000000 00:00 0 7f16b03a9000-7f16b04a9000 rw-p 00000000 00:00 0 7f16b04a9000-7f16b04aa000 ---p 00000000 00:00 0 7f16b04aa000-7f16b0670000 rw-p 00000000 00:00 0 7f16b0670000-7f16b096a000 ---p 00000000 00:00 0 7f16b096a000-7f16b0985000 r-xp 00000000 08:02 11017715 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libzip.so 7f16b0985000-7f16b0b84000 ---p 0001b000 08:02 11017715 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libzip.so 7f16b0b84000-7f16b0b85000 r--p 0001a000 08:02 11017715 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libzip.so 7f16b0b85000-7f16b0b86000 rw-p 0001b000 08:02 11017715 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libzip.so 7f16b0b86000-7f16b0b89000 r-xp 00000000 08:02 4456760 /opt/pbis/lib64/libuuid.so.0.0.0 7f16b0b89000-7f16b0c88000 ---p 00003000 08:02 4456760 /opt/pbis/lib64/libuuid.so.0.0.0 7f16b0c88000-7f16b0c89000 rw-p 00002000 08:02 4456760 /opt/pbis/lib64/libuuid.so.0.0.0 7f16b0c89000-7f16b0d15000 r-xp 00000000 08:02 4456704 /opt/pbis/lib64/liblwbase_nothr.so.0.0.0 7f16b0d15000-7f16b0e15000 ---p 0008c000 08:02 4456704 /opt/pbis/lib64/liblwbase_nothr.so.0.0.0 7f16b0e15000-7f16b0e43000 rw-p 0008c000 08:02 4456704 /opt/pbis/lib64/liblwbase_nothr.so.0.0.0 7f16b0e43000-7f16b0e69000 r-xp 00000000 08:02 4456684 /opt/pbis/lib64/liblsacommon.so.0.0.0 7f16b0e69000-7f16b0f68000 ---p 00026000 08:02 4456684 /opt/pbis/lib64/liblsacommon.so.0.0.0 7f16b0f68000-7f16b0f74000 rw-p 00025000 08:02 4456684 /opt/pbis/lib64/liblsacommon.so.0.0.0 7f16b0f74000-7f16b0f9e000 r-xp 00000000 08:02 4456698 /opt/pbis/lib64/liblwadvapi_nothr.so.0.0.0 7f16b0f9e000-7f16b109d000 ---p 0002a000 08:02 4456698 /opt/pbis/lib64/liblwadvapi_nothr.so.0.0.0 7f16b109d000-7f16b10a6000 rw-p 00029000 08:02 4456698 /opt/pbis/lib64/liblwadvapi_nothr.so.0.0.0 7f16b10a6000-7f16b10c5000 r-xp 00000000 08:02 4456718 /opt/pbis/lib64/liblwmsg_nothr.so.0.0.0 7f16b10c5000-7f16b11c4000 ---p 0001f000 08:02 4456718 /opt/pbis/lib64/liblwmsg_nothr.so.0.0.0 7f16b11c4000-7f16b11c7000 rw-p 0001e000 08:02 4456718 /opt/pbis/lib64/liblwmsg_nothr.so.0.0.0 7f16b11c7000-7f16b11ca000 r-xp 00000000 08:02 4456676 /opt/pbis/lib64/liblsaauth.so.0.0.0 7f16b11ca000-7f16b12ca000 ---p 00003000 08:02 4456676 /opt/pbis/lib64/liblsaauth.so.0.0.0 7f16b12ca000-7f16b12cb000 rw-p 00003000 08:02 4456676 /opt/pbis/lib64/liblsaauth.so.0.0.0 7f16b12cb000-7f16b12e5000 r-xp 00000000 08:02 4456678 /opt/pbis/lib64/liblsaclient.so.0.0.0 7f16b12e5000-7f16b13e5000 ---p 0001a000 08:02 4456678 /opt/pbis/lib64/liblsaclient.so.0.0.0 7f16b13e5000-7f16b13e6000 rw-p 0001a000 08:02 4456678 /opt/pbis/lib64/liblsaclient.so.0.0.0 7f16b13e6000-7f16b13ec000 r-xp 00000000 08:02 11547967 /usr/lib64/libnss_lsass.so.2 7f16b13ec000-7f16b14eb000 ---p 00006000 08:02 11547967 /usr/lib64/libnss_lsass.so.2 7f16b14eb000-7f16b14ec000 rw-p 00005000 08:02 11547967 /usr/lib64/libnss_lsass.so.2 7f16b14ec000-7f16b14f4000 r-xp 00000000 08:02 11546941 /usr/lib64/libnss_sss.so.2 7f16b14f4000-7f16b16f3000 ---p 00008000 08:02 11546941 /usr/lib64/libnss_sss.so.2 7f16b16f3000-7f16b16f4000 r--p 00007000 08:02 11546941 /usr/lib64/libnss_sss.so.2 7f16b16f4000-7f16b16f5000 rw-p 00008000 08:02 11546941 /usr/lib64/libnss_sss.so.2 7f16b16f5000-7f16b1701000 r-xp 00000000 08:02 11547980 /usr/lib64/libnss_files-2.17.so 7f16b1701000-7f16b1900000 ---p 0000c000 08:02 11547980 /usr/lib64/libnss_files-2.17.so 7f16b1900000-7f16b1901000 r--p 0000b000 08:02 11547980 /usr/lib64/libnss_files-2.17.so 7f16b1901000-7f16b1902000 rw-p 0000c000 08:02 11547980 /usr/lib64/libnss_files-2.17.so 7f16b1902000-7f16b1908000 rw-p 00000000 00:00 0 7f16b1908000-7f16b1934000 r-xp 00000000 08:02 11017709 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libjava.so 7f16b1934000-7f16b1b34000 ---p 0002c000 08:02 11017709 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libjava.so 7f16b1b34000-7f16b1b35000 r--p 0002c000 08:02 11017709 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libjava.so 7f16b1b35000-7f16b1b37000 rw-p 0002d000 08:02 11017709 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libjava.so 7f16b1b37000-7f16b1b44000 r-xp 00000000 08:02 11017718 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libverify.so 7f16b1b44000-7f16b1d43000 ---p 0000d000 08:02 11017718 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libverify.so 7f16b1d43000-7f16b1d45000 r--p 0000c000 08:02 11017718 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libverify.so 7f16b1d45000-7f16b1d46000 rw-p 0000e000 08:02 11017718 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/libverify.so 7f16b1d46000-7f16b1d4d000 r-xp 00000000 08:02 11547983 /usr/lib64/librt-2.17.so 7f16b1d4d000-7f16b1f4c000 ---p 00007000 08:02 11547983 /usr/lib64/librt-2.17.so 7f16b1f4c000-7f16b1f4d000 r--p 00006000 08:02 11547983 /usr/lib64/librt-2.17.so 7f16b1f4d000-7f16b1f4e000 rw-p 00007000 08:02 11547983 /usr/lib64/librt-2.17.so 7f16b1f4e000-7f16b204e000 r-xp 00000000 08:02 11547977 /usr/lib64/libm-2.17.so 7f16b204e000-7f16b224e000 ---p 00100000 08:02 11547977 /usr/lib64/libm-2.17.so 7f16b224e000-7f16b224f000 r--p 00100000 08:02 11547977 /usr/lib64/libm-2.17.so 7f16b224f000-7f16b2250000 rw-p 00101000 08:02 11547977 /usr/lib64/libm-2.17.so 7f16b2250000-7f16b2f38000 r-xp 00000000 08:02 11017713 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/server/libjvm.so 7f16b2f38000-7f16b3137000 ---p 00ce8000 08:02 11017713 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/server/libjvm.so 7f16b3137000-7f16b31cd000 r--p 00ce7000 08:02 11017713 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/server/libjvm.so 7f16b31cd000-7f16b31fe000 rw-p 00d7d000 08:02 11017713 /export/apps/xtools/LNKD-intellij-2019.1/jre64/jre/lib/amd64/server/libjvm.so 7f16b31fe000-7f16b3239000 rw-p 00000000 00:00 0 7f16b3239000-7f16b33f0000 r-xp 00000000 08:02 11534929 /usr/lib64/libc-2.17.so 7f16b33f0000-7f16b35ef000 ---p 001b7000 08:02 11534929 /usr/lib64/libc-2.17.so 7f16b35ef000-7f16b35f3000 r--p 001b6000 08:02 11534929 /usr/lib64/libc-2.17.so 7f16b35f3000-7f16b35f5000 rw-p 001ba000 08:02 11534929 /usr/lib64/libc-2.17.so 7f16b35f5000-7f16b35fa000 rw-p 00000000 00:00 0 7f16b35fa000-7f16b35fc000 r-xp 00000000 08:02 11547976 /usr/lib64/libdl-2.17.so 7f16b35fc000-7f16b37fc000 ---p 00002000 08:02 11547976 /usr/lib64/libdl-2.17.so 7f16b37fc000-7f16b37fd000 r--p 00002000 08:02 11547976 /usr/lib64/libdl-2.17.so 7f16b37fd000-7f16b37fe000 rw-p 00003000 08:02 11547976 /usr/lib64/libdl-2.17.so 7f16b37fe000-7f16b3815000 r-xp 00000000 08:02 15472960 /export/apps/xtools/LNKD-intellij-2019.1/jre64/lib/amd64/jli/libjli.so 7f16b3815000-7f16b3a14000 ---p 00017000 08:02 15472960 /export/apps/xtools/LNKD-intellij-2019.1/jre64/lib/amd64/jli/libjli.so 7f16b3a14000-7f16b3a15000 r--p 00016000 08:02 15472960 /export/apps/xtools/LNKD-intellij-2019.1/jre64/lib/amd64/jli/libjli.so 7f16b3a15000-7f16b3a16000 rw-p 00017000 08:02 15472960 /export/apps/xtools/LNKD-intellij-2019.1/jre64/lib/amd64/jli/libjli.so 7f16b3a16000-7f16b3a2d000 r-xp 00000000 08:02 11534955 /usr/lib64/libpthread-2.17.so 7f16b3a2d000-7f16b3c2c000 ---p 00017000 08:02 11534955 /usr/lib64/libpthread-2.17.so 7f16b3c2c000-7f16b3c2d000 r--p 00016000 08:02 11534955 /usr/lib64/libpthread-2.17.so 7f16b3c2d000-7f16b3c2e000 rw-p 00017000 08:02 11534955 /usr/lib64/libpthread-2.17.so 7f16b3c2e000-7f16b3c32000 rw-p 00000000 00:00 0 7f16b3c32000-7f16b3c52000 r-xp 00000000 08:02 11535852 /usr/lib64/ld-2.17.so 7f16b3c52000-7f16b3c5b000 r--s 000ea000 08:02 9853613 /export/apps/xtools/LNKD-intellij-2019.1/lib/log4j.jar 7f16b3c5b000-7f16b3d34000 rw-p 00000000 00:00 0 7f16b3d34000-7f16b3d37000 ---p 00000000 00:00 0 7f16b3d37000-7f16b3e39000 rw-p 00000000 00:00 0 7f16b3e39000-7f16b3e3b000 r--s 00005000 08:02 9853555 /export/apps/xtools/LNKD-intellij-2019.1/lib/istack-commons-runtime-3.0.7.jar 7f16b3e3b000-7f16b3e3c000 r--s 00006000 08:02 9853550 /export/apps/xtools/LNKD-intellij-2019.1/lib/imgscalr-lib-4.2.jar 7f16b3e3c000-7f16b3e42000 r--s 000af000 08:02 9853574 /export/apps/xtools/LNKD-intellij-2019.1/lib/jdom.jar 7f16b3e42000-7f16b3e45000 r--s 0003a000 08:02 9853527 /export/apps/xtools/LNKD-intellij-2019.1/lib/extensions.jar 7f16b3e45000-7f16b3e47000 r--s 0000e000 08:02 9853503 /export/apps/xtools/LNKD-intellij-2019.1/lib/bootstrap.jar 7f16b3e47000-7f16b3e4f000 rw-s 00000000 08:02 8650783 /tmp/hsperfdata_broberts/8359 7f16b3e4f000-7f16b3e50000 rw-p 00000000 00:00 0 7f16b3e50000-7f16b3e51000 r--p 00000000 00:00 0 7f16b3e51000-7f16b3e52000 rw-p 00000000 00:00 0 7f16b3e52000-7f16b3e53000 r--p 00020000 08:02 11535852 /usr/lib64/ld-2.17.so 7f16b3e53000-7f16b3e54000 rw-p 00021000 08:02 11535852 /usr/lib64/ld-2.17.so 7f16b3e54000-7f16b3e55000 rw-p 00000000 00:00 0 7ffde5df3000-7ffde5e15000 rw-p 00000000 00:00 0 [stack] 7ffde5fbd000-7ffde5fbf000 r-xp 00000000 00:00 0 [vdso] ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall] VM Arguments: jvm_args: -Xms1024m -Xmx8192m -XX:ReservedCodeCacheSize=240m -XX:+UseConcMarkSweepGC -XX:SoftRefLRUPolicyMSPerMB=50 -ea -Dsun.io.useCanonCaches=false -Djava.net.preferIPv4Stack=true -Djdk.http.auth.tunneling.disabledSchemes="" -XX:+HeapDumpOnOutOfMemoryError -XX:-OmitStackTraceInFastThrow -Dawt.useSystemAAFontSettings=lcd -Dsun.java2d.renderer=sun.java2d.marlin.MarlinRenderingEngine -Dsun.tools.attach.tmp.only=true -Djava.security.egd=file:/dev/./urandom -Djxbrowser.ipc.external=true -Djavax.net.ssl.trustStore=/export/apps/jdk/JDK-1_8_0_172/jre/lib/security/cacerts -XX:ErrorFile=/home/broberts/java_error_in_IDEA_%p.log -XX:HeapDumpPath=/home/broberts/java_error_in_IDEA.hprof -Didea.paths.selector=IntelliJIdea2019.1 -Djb.vmOptionsFile=/export/apps/xtools/LNKD-intellij-2019.1/bin/idea64.vmoptions -Didea.properties.file=/home/broberts/.IntelliJIdeaLI13/idea.properties -Didea.jre.check=true java_command: com.intellij.idea.Main java_class_path (initial): /export/apps/xtools/LNKD-intellij-2019.1/lib/bootstrap.jar:/export/apps/xtools/LNKD-intellij-2019.1/lib/extensions.jar:/export/apps/xtools/LNKD-intellij-2019.1/lib/util.jar:/export/apps/xtools/LNKD-intellij-2019.1/lib/jdom.jar:/export/apps/xtools/LNKD-intellij-2019.1/lib/log4j.jar:/export/apps/xtools/LNKD-intellij-2019.1/lib/trove4j.jar:/export/apps/xtools/LNKD-intellij-2019.1/lib/jna.jar:/export/apps/xtools/LNKD-intellij-2019.1/jre64/lib/tools.jar Launcher Type: SUN_STANDARD Environment Variables: JAVA_HOME=/export/apps/jdk/JDK-1_8_0_121 PATH=/export/apps/xtools/bin:/usr/lib64/qt-3.3/bin:/export/apps/xtools/gradle-3.5/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/export/apps/xtools/apache-ant-1.7.1/bin:/var/cfengine/bin:/export/apps/xtools/charles-proxy/bin:/export/apps/xtools/oracle-instantclient:/usr/local/linkedin/bin:/export/content/linkedin/bin:/home/broberts/bin:/export/apps/jdk/JDK-1_8_0_121/bin:/usr/local/bin:/usr/local/mysql/bin:/usr/local/linkedin/bin USERNAME=broberts LD_LIBRARY_PATH=/export/apps/xtools/oracle-instantclient SHELL=/bin/bash DISPLAY=:0 Signal Handlers: SIGSEGV: [libjvm.so+0xad3d90], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO SIGBUS: [libjvm.so+0xad3d90], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO SIGFPE: [libjvm.so+0x90b8b0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO SIGPIPE: SIG_IGN, sa_mask[0]=00000000000010000000000000000000, sa_flags=SA_RESTART SIGXFSZ: [libjvm.so+0x90b8b0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO SIGILL: [libjvm.so+0x90b8b0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO SIGUSR1: [libjfxwebkit.so+0x223f450], sa_mask[0]=00000000010000000000000000000000, sa_flags=SA_RESTART|SA_SIGINFO SIGUSR2: [libjvm.so+0x90b780], sa_mask[0]=00000000000000000000000000000000, sa_flags=SA_RESTART|SA_SIGINFO SIGHUP: [libjvm.so+0x90bda0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO SIGINT: [libjvm.so+0x90bda0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO SIGTERM: [libjvm.so+0x90bda0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO SIGQUIT: [libjvm.so+0x90bda0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO --------------- S Y S T E M --------------- OS:Red Hat Enterprise Linux Workstation release 7.3 (Maipo) uname:Linux 3.10.0-514.55.4.el7.x86_64 #1 SMP Fri Aug 10 17:03:02 UTC 2018 x86_64 libc:glibc 2.17 NPTL 2.17 rlimit: STACK 8192k, CORE 0k, NPROC 81920, NOFILE 280000, AS infinity load average:2.55 0.95 0.46 /proc/meminfo: MemTotal: 65698440 kB MemFree: 47116512 kB MemAvailable: 61400684 kB Buffers: 1257692 kB Cached: 12210844 kB SwapCached: 0 kB Active: 9064916 kB Inactive: 7375820 kB Active(anon): 2972844 kB Inactive(anon): 40768 kB Active(file): 6092072 kB Inactive(file): 7335052 kB Unevictable: 96 kB Mlocked: 96 kB SwapTotal: 65867772 kB SwapFree: 65867772 kB Dirty: 5932 kB Writeback: 0 kB AnonPages: 2969472 kB Mapped: 400516 kB Shmem: 41740 kB Slab: 1480384 kB SReclaimable: 1387828 kB SUnreclaim: 92556 kB KernelStack: 21152 kB PageTables: 45464 kB NFS_Unstable: 0 kB Bounce: 0 kB WritebackTmp: 0 kB CommitLimit: 98716992 kB Committed_AS: 11509660 kB VmallocTotal: 34359738367 kB VmallocUsed: 4675832 kB VmallocChunk: 34354444284 kB HardwareCorrupted: 0 kB AnonHugePages: 1642496 kB HugePages_Total: 0 HugePages_Free: 0 HugePages_Rsvd: 0 HugePages_Surp: 0 Hugepagesize: 2048 kB DirectMap4k: 2126260 kB DirectMap2M: 40779776 kB DirectMap1G: 24117248 kB container (cgroup) information: container_type: cgroupv1 cpu_cpuset_cpus: 0-11 cpu_memory_nodes: 0 active_processor_count: 12 cpu_quota: -1 cpu_period: 100000 cpu_shares: -1 memory_limit_in_bytes: -1 memory_and_swap_limit_in_bytes: -1 memory_soft_limit_in_bytes: -1 memory_usage_in_bytes: 16838160384 memory_max_usage_in_bytes: 0 CPU:total 12 (initial active 12) (6 cores per cpu, 2 threads per core) family 6 model 63 stepping 2, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, avx2, aes, clmul, erms, lzcnt, ht, tsc, tscinvbit, bmi1, bmi2 /proc/cpuinfo: processor : 0 vendor_id : GenuineIntel cpu family : 6 model : 63 model name : Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz stepping : 2 microcode : 0x3a cpu MHz : 2693.531 cache size : 15360 KB physical id : 0 siblings : 12 core id : 0 cpu cores : 6 apicid : 0 initial apicid : 0 fpu : yes fpu_exception : yes cpuid level : 15 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm ida arat epb invpcid_single pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc bogomips : 4788.51 clflush size : 64 cache_alignment : 64 address sizes : 46 bits physical, 48 bits virtual power management: processor : 1 vendor_id : GenuineIntel cpu family : 6 model : 63 model name : Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz stepping : 2 microcode : 0x3a cpu MHz : 2693.531 cache size : 15360 KB physical id : 0 siblings : 12 core id : 1 cpu cores : 6 apicid : 2 initial apicid : 2 fpu : yes fpu_exception : yes cpuid level : 15 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm ida arat epb invpcid_single pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc bogomips : 4788.51 clflush size : 64 cache_alignment : 64 address sizes : 46 bits physical, 48 bits virtual power management: processor : 2 vendor_id : GenuineIntel cpu family : 6 model : 63 model name : Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz stepping : 2 microcode : 0x3a cpu MHz : 2623.125 cache size : 15360 KB physical id : 0 siblings : 12 core id : 2 cpu cores : 6 apicid : 4 initial apicid : 4 fpu : yes fpu_exception : yes cpuid level : 15 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm ida arat epb invpcid_single pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc bogomips : 4788.51 clflush size : 64 cache_alignment : 64 address sizes : 46 bits physical, 48 bits virtual power management: processor : 3 vendor_id : GenuineIntel cpu family : 6 model : 63 model name : Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz stepping : 2 microcode : 0x3a cpu MHz : 2599.968 cache size : 15360 KB physical id : 0 siblings : 12 core id : 3 cpu cores : 6 apicid : 6 initial apicid : 6 fpu : yes fpu_exception : yes cpuid level : 15 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm ida arat epb invpcid_single pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc bogomips : 4788.51 clflush size : 64 cache_alignment : 64 address sizes : 46 bits physical, 48 bits virtual power management: processor : 4 vendor_id : GenuineIntel cpu family : 6 model : 63 model name : Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz stepping : 2 microcode : 0x3a cpu MHz : 2691.093 cache size : 15360 KB physical id : 0 siblings : 12 core id : 4 cpu cores : 6 apicid : 8 initial apicid : 8 fpu : yes fpu_exception : yes cpuid level : 15 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm ida arat epb invpcid_single pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc bogomips : 4788.51 clflush size : 64 cache_alignment : 64 address sizes : 46 bits physical, 48 bits virtual power management: processor : 5 vendor_id : GenuineIntel cpu family : 6 model : 63 model name : Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz stepping : 2 microcode : 0x3a cpu MHz : 2675.437 cache size : 15360 KB physical id : 0 siblings : 12 core id : 5 cpu cores : 6 apicid : 10 initial apicid : 10 fpu : yes fpu_exception : yes cpuid level : 15 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm ida arat epb invpcid_single pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc bogomips : 4788.51 clflush size : 64 cache_alignment : 64 address sizes : 46 bits physical, 48 bits virtual power management: processor : 6 vendor_id : GenuineIntel cpu family : 6 model : 63 model name : Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz stepping : 2 microcode : 0x3a cpu MHz : 2676.656 cache size : 15360 KB physical id : 0 siblings : 12 core id : 0 cpu cores : 6 apicid : 1 initial apicid : 1 fpu : yes fpu_exception : yes cpuid level : 15 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm ida arat epb invpcid_single pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc bogomips : 4788.51 clflush size : 64 cache_alignment : 64 address sizes : 46 bits physical, 48 bits virtual power management: processor : 7 vendor_id : GenuineIntel cpu family : 6 model : 63 model name : Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz stepping : 2 microcode : 0x3a cpu MHz : 2693.531 cache size : 15360 KB physical id : 0 siblings : 12 core id : 1 cpu cores : 6 apicid : 3 initial apicid : 3 fpu : yes fpu_exception : yes cpuid level : 15 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm ida arat epb invpcid_single pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc bogomips : 4788.51 clflush size : 64 cache_alignment : 64 address sizes : 46 bits physical, 48 bits virtual power management: processor : 8 vendor_id : GenuineIntel cpu family : 6 model : 63 model name : Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz stepping : 2 microcode : 0x3a cpu MHz : 2599.968 cache size : 15360 KB physical id : 0 siblings : 12 core id : 2 cpu cores : 6 apicid : 5 initial apicid : 5 fpu : yes fpu_exception : yes cpuid level : 15 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm ida arat epb invpcid_single pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc bogomips : 4788.51 clflush size : 64 cache_alignment : 64 address sizes : 46 bits physical, 48 bits virtual power management: processor : 9 vendor_id : GenuineIntel cpu family : 6 model : 63 model name : Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz stepping : 2 microcode : 0x3a cpu MHz : 2650.500 cache size : 15360 KB physical id : 0 siblings : 12 core id : 3 cpu cores : 6 apicid : 7 initial apicid : 7 fpu : yes fpu_exception : yes cpuid level : 15 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm ida arat epb invpcid_single pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc bogomips : 4788.51 clflush size : 64 cache_alignment : 64 address sizes : 46 bits physical, 48 bits virtual power management: processor : 10 vendor_id : GenuineIntel cpu family : 6 model : 63 model name : Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz stepping : 2 microcode : 0x3a cpu MHz : 2600.250 cache size : 15360 KB physical id : 0 siblings : 12 core id : 4 cpu cores : 6 apicid : 9 initial apicid : 9 fpu : yes fpu_exception : yes cpuid level : 15 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm ida arat epb invpcid_single pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc bogomips : 4788.51 clflush size : 64 cache_alignment : 64 address sizes : 46 bits physical, 48 bits virtual power management: processor : 11 vendor_id : GenuineIntel cpu family : 6 model : 63 model name : Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz stepping : 2 microcode : 0x3a cpu MHz : 2685.843 cache size : 15360 KB physical id : 0 siblings : 12 core id : 5 cpu cores : 6 apicid : 11 initial apicid : 11 fpu : yes fpu_exception : yes cpuid level : 15 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm ida arat epb invpcid_single pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc bogomips : 4788.51 clflush size : 64 cache_alignment : 64 address sizes : 46 bits physical, 48 bits virtual power management: Memory: 4k page, physical 65698440k(47116512k free), swap 65867772k(65867772k free) vm_info: Java HotSpot(TM) 64-Bit Server VM (25.211-b12) for linux-amd64 JRE (1.8.0_211-b12), built on Apr 1 2019 20:39:34 by "java_re" with gcc 7.3.0 time: Mon Jun 3 10:39:54 2019 timezone: PDT elapsed time: 22 seconds (0d 0h 0m 22s) From thiago.sayao at clamed.com.br Mon Jun 3 20:43:44 2019 From: thiago.sayao at clamed.com.br (Thiago Milczarek Sayao) Date: Mon, 3 Jun 2019 20:43:44 +0000 Subject: How to run Ensemble8? Message-ID: How do I run Ensemble8 from source, using the libs from the source build? Is there a gradle task for that (could not find one - also not a gradle expert)? Thanks! From kevin.rushforth at oracle.com Mon Jun 3 20:50:18 2019 From: kevin.rushforth at oracle.com (Kevin Rushforth) Date: Mon, 3 Jun 2019 13:50:18 -0700 Subject: How to run Ensemble8? In-Reply-To: References: Message-ID: $ gradle apps $ java @build/run.args -jar apps/samples/Ensemble8/dist/Ensemble8.jar -- Kevin On 6/3/2019 1:43 PM, Thiago Milczarek Sayao wrote: > How do I run Ensemble8 from source, using the libs from the source build? > > Is there a gradle task for that (could not find one - also not a gradle expert)? > > Thanks! From Dell.Green at ideaworks.co.uk Tue Jun 4 12:14:17 2019 From: Dell.Green at ideaworks.co.uk (Dell Green) Date: Tue, 4 Jun 2019 12:14:17 +0000 Subject: Can Javafx cursor be disabled? Message-ID: <01e6e9fa-5b8d-5e2b-d343-6ae0b034422c@ideaworks.co.uk> Hi Michael, Thanks for the awesome suggestion. I am compiling my own jdk and javafx, so i can patch it for my needs as you suggest. On further investigations I also see that the AndroidPlatform and the HeadlessPlatform just return a NullCursor on their createCursor methods which is a no-op implementation of cursor interface, so this also looks like an option. Further option would be at the application implementation level so that cursor disabling feature can be used across all platforms I have put up an issue request and will submit a pull request if my investigations are successful. https://github.com/javafxports/openjdk-jfx/issues/489 many thanks ------------------------------ Message: 2 Date: Mon, 3 Jun 2019 07:25:42 +0000 From: Doswald Michael To: "openjfx-dev at openjdk.java.net" Subject: RE: Can Javafx cursor be disabled? Message-ID: Content-Type: text/plain; charset="iso-8859-1" Hi, I had the same problem using i.MX6 with a touchscreen and Monocle on framebuffer (with JavaFX 1.8u151-b12). Unfortunately I could not find a workaround because, as you said, the gray cursor placeholder is displayed before any application code is executed. So there is no way to disable it using Java code. Since I compile the JavaFX part myself, I added the following patch to hide the cursor on startup. This seems to work for me: -------------------------------------------------------------------------------- diff -r fa07d9fbd309 modules/graphics/src/main/java/com/sun/glass/ui/monocle/MX6Cursor.java --- a/modules/graphics/src/main/java/com/sun/glass/ui/monocle/MX6Cursor.java Tue Sep 13 12:52:05 2016 -0400 +++ b/modules/graphics/src/main/java/com/sun/glass/ui/monocle/MX6Cursor.java Mon Sep 19 18:25:20 2016 +0200 @@ -154,6 +154,8 @@ NativeScreen screen = NativePlatformFactory.getNativePlatform().getScreen(); screenWidth = screen.getWidth(); screenHeight = screen.getHeight(); + + setVisibility(false); } @Override -------------------------------------------------------------------------------- Regards, Michael Hi, thanks for. Yes we are currently running without X and using Monocle. Maybe I'll put up a feature request as with embedded devices often the cursor is not a relevant modality. ------------------------------ Message: 3 Date: Sat, 1 Jun 2019 22:23:41 +0000 From: Thiago Milczarek Sayao To: "openjfx-dev at openjdk.java.net" Subject: RE: Can Javafx cursor be disabled? Message-ID: Content-Type: text/plain; charset="iso-8859-1" Just realized you might be using Monocle. So it might be handling the cursor. Don't know how to hide it.. ________________________________ De: openjfx-dev em nome de Thiago Milczarek Sayao Enviado: s?bado, 1 de junho de 2019 19:18 Para: openjfx-dev at openjdk.java.net Assunto: RE: Can Javafx cursor be disabled? I don't think javafx supports framebuffer. It might be working on gtk2, but will not work on gtk3 since the framebuffer backend was removed from gdk. So I suggest you move to X11. ________________________________ De: openjfx-dev em nome de Dell Green Enviado: s?bado, 1 de junho de 2019 16:28 Para: openjfx-dev at openjdk.java.net Assunto: RE: Can Javafx cursor be disabled? Thanks for that, good to know. I should of mentioned that we are not using X, but using framebuffer instead Message: 2 Date: Fri, 31 May 2019 14:45:11 +0000 From: Thiago Milczarek Sayao To: "openjfx-dev at openjdk.java.net" Subject: RE: Can Javafx cursor be disabled? Message-ID: Content-Type: text/plain; charset="us-ascii" If you are using X.org, the cursor is controlled by X, so I would look for a X configuration to disable cursor. https://unix.stackexchange.com/questions/346903/can-i-remove-the-mouse-pointer-entirely-from-x ________________________________ De: openjfx-dev em nome de Dell Green Enviado: sexta-feira, 31 de maio de 2019 11:29 Para: openjfx-dev at openjdk.java.net Assunto: Can Javafx cursor be disabled? We have a touch/rotary device that doesn't use any mouse/cursor input. Is there a way to tell javafx to not initialize a cursor (MX6Cursor.java in my case) on startup as we are seeing /dev/fb1 being unblanked and a grey cursor artifact drawn onto the /dev/fb1, before any user specific javafx code is created. I have looked through the source code and there doesn't seem to be a configurable property to control this. I can remove /dev/fb1 and javafx prints an error/stack-trace but appears to work as normal, however I'm not sure what ongoing impact this has on javafx. any thoughts? End of openjfx-dev Digest, Vol 91, Issue 1 ****************************************** End of openjfx-dev Digest, Vol 91, Issue 2 ****************************************** End of openjfx-dev Digest, Vol 91, Issue 3 ****************************************** From paulenuta at gmail.com Thu Jun 6 11:04:24 2019 From: paulenuta at gmail.com (Paul Enuta) Date: Thu, 6 Jun 2019 14:04:24 +0300 Subject: [PATCH] 8182572 Numpad keys not working with JavaFX Monocle Message-ID: Does this patch http://mail.openjdk.java.net/pipermail/openjfx-dev/2017-September/020818.html is included in Gluon JavaFX8 arm6hf 8.60.9 release? Is it possible for Gluon to release another JavaFX8 arm6hf based on latest http://hg.openjdk.java.net/openjfx/8u/rt ? Thanks a lot, Paul From Dell.Green at ideaworks.co.uk Thu Jun 6 11:19:12 2019 From: Dell.Green at ideaworks.co.uk (Dell Green) Date: Thu, 6 Jun 2019 11:19:12 +0000 Subject: RFR: JDK-8087980, JDK-8088412: Add property to disable Monocle cursor Message-ID: <10ca6bd5-f2ee-cccb-386c-9633bbb39dad@ideaworks.co.uk> Please review the fix for? Add property to disable Monocle cursor: https://bugs.java.com/bugdatabase/view_bug.do?bug_id=8087980 https://bugs.java.com/bugdatabase/view_bug.do?bug_id=8088412 https://github.com/javafxports/openjdk-jfx/issues/489 https://github.com/javafxports/openjdk-jfx/pull/493 From johan.vos at gluonhq.com Fri Jun 7 09:40:44 2019 From: johan.vos at gluonhq.com (Johan Vos) Date: Fri, 7 Jun 2019 11:40:44 +0200 Subject: Previews for shared buffer PR Message-ID: The PR discussed in https://github.com/javafxports/openjdk-jfx/pull/472, addressing https://bugs.openjdk.java.net/browse/JDK-8167148 provides a very much wanted feature. It is important that things are done in the right way so that the code can be maintained in the long-term future. Therefore, feedback on this PR is extremely important before we can consider merging it. Once this PR is merged, there is no easy way back. It is possible to add more functionality, hence my preference is to only implement the functionality that is safe and stable, while allowing other functionality to be added later or by third-party extensions. (e.g. (avoiding) copying from/to GPU) To make it easier to give feedback, we've build early access versions of SDK's including this PR. Note that the PR is not merged, hence not available in the regular EA downloads! If you want to give it a try, download the SDK's from the URL's below. There is a test in tests/manual/graphics/PixelBufferPerformanceTest ( https://github.com/arapte/openjdk-jfx/blob/JDK-8167148-NIO-ByteBuffer/tests/manual/graphics/PixelBufferPerformanceTest.java) that should get you started. https://download2.gluonhq.com/openjfx/forks/pixelbuffer/openjfx-13-pixelbuffer-ea+9_linux-x64_bin-jmods.zip https://download2.gluonhq.com/openjfx/forks/pixelbuffer/openjfx-13-pixelbuffer-ea+9_linux-x64_bin-sdk.zip https://download2.gluonhq.com/openjfx/forks/pixelbuffer/openjfx-13-pixelbuffer-ea+9_osx-x64_bin-jmods.zip https://download2.gluonhq.com/openjfx/forks/pixelbuffer/openjfx-13-pixelbuffer-ea+9_osx-x64_bin-sdk.zip https://download2.gluonhq.com/openjfx/forks/pixelbuffer/openjfx-13-pixelbuffer-ea+9_windows-x64_bin-jmods.zip https://download2.gluonhq.com/openjfx/forks/pixelbuffer/openjfx-13-pixelbuffer-ea+9_windows-x64_bin-sdk.zip - Johan From info at michaelhoffer.de Fri Jun 7 10:17:33 2019 From: info at michaelhoffer.de (Michael Hoffer) Date: Fri, 7 Jun 2019 12:17:33 +0200 Subject: Previews for shared buffer PR In-Reply-To: References: Message-ID: Hi Johan, hi all, I want to share some thoughts on native buffer support aka JDK-8167148: As I and many others have pointed out in the past, better native buffer support is a great opportunity for JavaFX to leverage the power of external visualization libraries and frameworks. It is a great way for community members to contribute new features to the scene graph. For many of us in the scientific world it opens the door to finally using JavaFX as a replacement for native solutions since we can integrate performance critical components into the scene graph. In the past I have been a little grumpy about the fact that little progress has been made on this front for quite some time. For me, it was almost impossible to promote JavaFX in favor of Swing or Qt. Projects like DriftFX have shown that there's interest in even more efficient solutions than just CPU based buffer sharing as it has been proposed by JDK-8167148. But things are changing. From a performance perspective DriftFX is by far the most promising solution. But for me, a stable solution as proposed in JDK-8167148 is even more important as it gives DriftFX the ability to use it as fallback, i.e., it will work much more reliably even if direct texture sharing does not work for some reason (drivers, hardware limitations etc.). Ambarish Rapte has started to work on a PR that already provides initial buffer support. I tried his implementation and found that render performance increases by roughly 50% compared to the classic PixelWriter approach. This is a significant improvement. For me, it worked exactly as advertised :) Thanks for this contribution. What's next? I will reanimate my experiments with a shared memory rendering solution based on boost IPC. That allowed me in the past to render full HTML5 (including WebGL) in JavaFX (see https://github.com/miho/VFXWebKit). But due to the performance limitations the project wasn't really practical. In general, we should allow foreign rendering technologies to be integrated into the scene graph. That will ensure that JavaFX will stay relevant for a very long time. JDK-8167148 is a very important step in this direction. Johan, thanks for providing the preview builds. They make testing really easy. Ambarish, thank you so much for your PR. Regards, Michael -- Dr. Michael Hoffer Web: mihosoft.eu Twitter: @mihosoft Goethe-Zentrum f?r Wissenschaftliches Rechnen (G-CSC) Goethe-Universit?t Kettenhofweg 139 60325 Frankfurt am Main phone: +49 69 798 25254 info at michaelhoffer.de Am Fr., 7. Juni 2019 um 11:43 Uhr schrieb Johan Vos : > The PR discussed in https://github.com/javafxports/openjdk-jfx/pull/472, > addressing https://bugs.openjdk.java.net/browse/JDK-8167148 provides a > very > much wanted feature. It is important that things are done in the right way > so that the code can be maintained in the long-term future. > Therefore, feedback on this PR is extremely important before we can > consider merging it. Once this PR is merged, there is no easy way back. It > is possible to add more functionality, hence my preference is to only > implement the functionality that is safe and stable, while allowing other > functionality to be added later or by third-party extensions. (e.g. > (avoiding) copying from/to GPU) > > To make it easier to give feedback, we've build early access versions of > SDK's including this PR. Note that the PR is not merged, hence not > available in the regular EA downloads! > > If you want to give it a try, download the SDK's from the URL's below. > There is a test in tests/manual/graphics/PixelBufferPerformanceTest ( > > https://github.com/arapte/openjdk-jfx/blob/JDK-8167148-NIO-ByteBuffer/tests/manual/graphics/PixelBufferPerformanceTest.java > ) > that should get you started. > > > https://download2.gluonhq.com/openjfx/forks/pixelbuffer/openjfx-13-pixelbuffer-ea+9_linux-x64_bin-jmods.zip > > https://download2.gluonhq.com/openjfx/forks/pixelbuffer/openjfx-13-pixelbuffer-ea+9_linux-x64_bin-sdk.zip > > https://download2.gluonhq.com/openjfx/forks/pixelbuffer/openjfx-13-pixelbuffer-ea+9_osx-x64_bin-jmods.zip > > https://download2.gluonhq.com/openjfx/forks/pixelbuffer/openjfx-13-pixelbuffer-ea+9_osx-x64_bin-sdk.zip > > https://download2.gluonhq.com/openjfx/forks/pixelbuffer/openjfx-13-pixelbuffer-ea+9_windows-x64_bin-jmods.zip > > https://download2.gluonhq.com/openjfx/forks/pixelbuffer/openjfx-13-pixelbuffer-ea+9_windows-x64_bin-sdk.zip > > - Johan > From guoge1 at huawei.com Mon Jun 10 02:52:11 2019 From: guoge1 at huawei.com (guoge (A)) Date: Mon, 10 Jun 2019 02:52:11 +0000 Subject: Will there be update of openjfx-8u? Message-ID: <9D8EABB130A7294DAD4857FC861F5FBF4AE1220C@dggemm509-mbx.china.huawei.com> Thanks for your reply, Kevin I wonder to know if I'm still using JDK8 with JFX8 because JFX 11 can not match with JDK8 (as I know), How can I deal with the vulnerabilities of JFX8? Thanks, Guo Ge From thiago.sayao at clamed.com.br Mon Jun 10 17:15:56 2019 From: thiago.sayao at clamed.com.br (Thiago Milczarek Sayao) Date: Mon, 10 Jun 2019 17:15:56 +0000 Subject: Call for testing: Drag and Drop on Linux Message-ID: Dear Linux Users, I did some modifications on DND to work better with Linux: https://github.com/javafxports/openjdk-jfx/pull/490 Benefits: * Works on wayland * Works across gtk2 and gtk3 with little code differences * Works on scenebuilder (with gtk3 - currently it falls back to gtk2) * Will be easier to port to GTK4 when it's default (may take some time). I have tested on Ubuntu 16.04, 18.04 and 19.04. Please, give feedback on the Pull Request. On the source there are two test apps included (tests/manual/dnd). Can be also tested with scenebuilder (which uses drag and drop): * Clone de source https://github.com/gluonhq/scenebuilder * Build: gradlew build * Run: java --module-path /openjdk-jfx/build/sdk/lib --add-modules javafx.web,javafx.fxml,javafx.swing,javafx.media --add-opens=javafx.fxml/javafx.fxml=ALL-UNNAMED -cp app/build/libs/scenebuilder-11.0.0-SNAPSHOT.jar com.oracle.javafx.scenebuilder.app.SceneBuilderApp From m4gw4s at gmail.com Mon Jun 10 17:35:55 2019 From: m4gw4s at gmail.com (=?UTF-8?B?TWFnb3PDoW55aSDDgXJww6Fk?=) Date: Mon, 10 Jun 2019 18:35:55 +0100 Subject: Call for testing: Drag and Drop on Linux In-Reply-To: References: Message-ID: <5e4fdef4-2578-25ed-fffc-784ddd058457@gmail.com> I could not compile. This is most probably have something to do with the package configuration of my machine. To avoid such problems, I used to build using a well-known cloud CI service using docker, where the Dockerfile is also in the source tree, so both the needed packages and their configuration is available (and I keep the CI service configuration minimal to make it easier to reproduce in other environments). I did try to install the dependencies listed in travis.yml, but the packages are seem to be for trusty, and some are not found for my bionic system. Anyone could recommend a docker container in which openjfx does compile? Here is the compilation output: mag at scott:~/build/openjdk-jfx$ git status On branch develop Your branch is up to date with 'origin/develop'. nothing to commit, working tree clean mag at scott:~/build/openjdk-jfx$ gradle build --stacktrace FAILURE: Build failed with an exception. * Where: Settings file '/build/mag/openjdk-jfx/settings.gradle' line: 40 * What went wrong: A problem occurred evaluating settings 'openjdk-jfx'. > Could not find method enableFeaturePreview() for arguments [STABLE_PUBLISHING] on settings 'openjdk-jfx' of type org.gradle.initialization.DefaultSettings. * Try: Run with --info or --debug option to get more log output. Run with --scan to get full insights. * Exception is: org.gradle.api.GradleScriptException: A problem occurred evaluating settings 'openjdk-jfx'. ??????? at org.gradle.groovy.scripts.internal.DefaultScriptRunnerFactory$ScriptRunnerImpl.run(DefaultScriptRunnerFactory.java:92) ??????? at org.gradle.configuration.DefaultScriptPluginFactory$ScriptPluginImpl$2.run(DefaultScriptPluginFactory.java:199) ??????? at org.gradle.configuration.DefaultScriptTarget.addConfiguration(DefaultScriptTarget.java:74) ??????? at org.gradle.configuration.DefaultScriptPluginFactory$ScriptPluginImpl.apply(DefaultScriptPluginFactory.java:204) ??????? at org.gradle.configuration.BuildOperationScriptPlugin$1.run(BuildOperationScriptPlugin.java:61) ??????? at org.gradle.internal.progress.DefaultBuildOperationExecutor$RunnableBuildOperationWorker.execute(DefaultBuildOperationExecutor.java:336) ??????? at org.gradle.internal.progress.DefaultBuildOperationExecutor$RunnableBuildOperationWorker.execute(DefaultBuildOperationExecutor.java:328) ??????? at org.gradle.internal.progress.DefaultBuildOperationExecutor.execute(DefaultBuildOperationExecutor.java:199) ??????? at org.gradle.internal.progress.DefaultBuildOperationExecutor.run(DefaultBuildOperationExecutor.java:110) ??????? at org.gradle.configuration.BuildOperationScriptPlugin.apply(BuildOperationScriptPlugin.java:58) ??????? at org.gradle.initialization.ScriptEvaluatingSettingsProcessor.applySettingsScript(ScriptEvaluatingSettingsProcessor.java:67) ??????? at org.gradle.initialization.ScriptEvaluatingSettingsProcessor.process(ScriptEvaluatingSettingsProcessor.java:58) ??????? at org.gradle.initialization.PropertiesLoadingSettingsProcessor.process(PropertiesLoadingSettingsProcessor.java:37) ??????? at org.gradle.initialization.NotifyingSettingsProcessor$1.call(NotifyingSettingsProcessor.java:45) ??????? at org.gradle.initialization.NotifyingSettingsProcessor$1.call(NotifyingSettingsProcessor.java:42) ??????? at org.gradle.internal.progress.DefaultBuildOperationExecutor$CallableBuildOperationWorker.execute(DefaultBuildOperationExecutor.java:350) ??????? at org.gradle.internal.progress.DefaultBuildOperationExecutor$CallableBuildOperationWorker.execute(DefaultBuildOperationExecutor.java:340) ??????? at org.gradle.internal.progress.DefaultBuildOperationExecutor.execute(DefaultBuildOperationExecutor.java:199) ??????? at org.gradle.internal.progress.DefaultBuildOperationExecutor.call(DefaultBuildOperationExecutor.java:120) ??????? at org.gradle.initialization.NotifyingSettingsProcessor.process(NotifyingSettingsProcessor.java:42) ??????? at org.gradle.initialization.DefaultSettingsLoader.findSettingsAndLoadIfAppropriate(DefaultSettingsLoader.java:111) ??????? at org.gradle.initialization.DefaultSettingsLoader.findAndLoadSettings(DefaultSettingsLoader.java:48) ??????? at org.gradle.internal.composite.CompositeBuildSettingsLoader.findAndLoadSettings(CompositeBuildSettingsLoader.java:40) ??????? at org.gradle.initialization.NotifyingSettingsLoader.findAndLoadSettings(NotifyingSettingsLoader.java:31) ??????? at org.gradle.initialization.DefaultGradleLauncher$LoadBuild.run(DefaultGradleLauncher.java:235) ??????? at org.gradle.internal.progress.DefaultBuildOperationExecutor$RunnableBuildOperationWorker.execute(DefaultBuildOperationExecutor.java:336) ??????? at org.gradle.internal.progress.DefaultBuildOperationExecutor$RunnableBuildOperationWorker.execute(DefaultBuildOperationExecutor.java:328) ??????? at org.gradle.internal.progress.DefaultBuildOperationExecutor.execute(DefaultBuildOperationExecutor.java:199) ??????? at org.gradle.internal.progress.DefaultBuildOperationExecutor.run(DefaultBuildOperationExecutor.java:110) ??????? at org.gradle.initialization.DefaultGradleLauncher.loadSettings(DefaultGradleLauncher.java:159) ??????? at org.gradle.initialization.DefaultGradleLauncher.doBuildStages(DefaultGradleLauncher.java:122) ??????? at org.gradle.initialization.DefaultGradleLauncher.executeTasks(DefaultGradleLauncher.java:109) ??????? at org.gradle.internal.invocation.GradleBuildController$1.call(GradleBuildController.java:78) ??????? at org.gradle.internal.invocation.GradleBuildController$1.call(GradleBuildController.java:75) ??????? at org.gradle.internal.work.DefaultWorkerLeaseService.withLocks(DefaultWorkerLeaseService.java:152) ??????? at org.gradle.internal.invocation.GradleBuildController.doBuild(GradleBuildController.java:100) ??????? at org.gradle.internal.invocation.GradleBuildController.run(GradleBuildController.java:75) ??????? at org.gradle.tooling.internal.provider.ExecuteBuildActionRunner.run(ExecuteBuildActionRunner.java:28) ??????? at org.gradle.launcher.exec.ChainingBuildActionRunner.run(ChainingBuildActionRunner.java:35) ??????? at org.gradle.tooling.internal.provider.ValidatingBuildActionRunner.run(ValidatingBuildActionRunner.java:32) ??????? at org.gradle.launcher.exec.RunAsBuildOperationBuildActionRunner$1.run(RunAsBuildOperationBuildActionRunner.java:43) ??????? at org.gradle.internal.progress.DefaultBuildOperationExecutor$RunnableBuildOperationWorker.execute(DefaultBuildOperationExecutor.java:336) ??????? at org.gradle.internal.progress.DefaultBuildOperationExecutor$RunnableBuildOperationWorker.execute(DefaultBuildOperationExecutor.java:328) ??????? at org.gradle.internal.progress.DefaultBuildOperationExecutor.execute(DefaultBuildOperationExecutor.java:199) ??????? at org.gradle.internal.progress.DefaultBuildOperationExecutor.run(DefaultBuildOperationExecutor.java:110) ??????? at org.gradle.launcher.exec.RunAsBuildOperationBuildActionRunner.run(RunAsBuildOperationBuildActionRunner.java:40) ??????? at org.gradle.tooling.internal.provider.SubscribableBuildActionRunner.run(SubscribableBuildActionRunner.java:51) ??????? at org.gradle.launcher.exec.InProcessBuildActionExecuter.execute(InProcessBuildActionExecuter.java:47) ??????? at org.gradle.launcher.exec.InProcessBuildActionExecuter.execute(InProcessBuildActionExecuter.java:30) ??????? at org.gradle.launcher.exec.BuildTreeScopeBuildActionExecuter.execute(BuildTreeScopeBuildActionExecuter.java:39) ??????? at org.gradle.launcher.exec.BuildTreeScopeBuildActionExecuter.execute(BuildTreeScopeBuildActionExecuter.java:25) ??????? at org.gradle.tooling.internal.provider.ContinuousBuildActionExecuter.execute(ContinuousBuildActionExecuter.java:80) ??????? at org.gradle.tooling.internal.provider.ContinuousBuildActionExecuter.execute(ContinuousBuildActionExecuter.java:53) ??????? at org.gradle.tooling.internal.provider.ServicesSetupBuildActionExecuter.execute(ServicesSetupBuildActionExecuter.java:57) ??????? at org.gradle.tooling.internal.provider.ServicesSetupBuildActionExecuter.execute(ServicesSetupBuildActionExecuter.java:32) ??????? at org.gradle.tooling.internal.provider.GradleThreadBuildActionExecuter.execute(GradleThreadBuildActionExecuter.java:36) ??????? at org.gradle.tooling.internal.provider.GradleThreadBuildActionExecuter.execute(GradleThreadBuildActionExecuter.java:25) ??????? at org.gradle.tooling.internal.provider.ParallelismConfigurationBuildActionExecuter.execute(ParallelismConfigurationBuildActionExecuter.java:43) ??????? at org.gradle.tooling.internal.provider.ParallelismConfigurationBuildActionExecuter.execute(ParallelismConfigurationBuildActionExecuter.java:29) ??????? at org.gradle.tooling.internal.provider.StartParamsValidatingActionExecuter.execute(StartParamsValidatingActionExecuter.java:69) ??????? at org.gradle.tooling.internal.provider.StartParamsValidatingActionExecuter.execute(StartParamsValidatingActionExecuter.java:30) ??????? at org.gradle.tooling.internal.provider.SessionFailureReportingActionExecuter.execute(SessionFailureReportingActionExecuter.java:59) ??????? at org.gradle.tooling.internal.provider.SessionFailureReportingActionExecuter.execute(SessionFailureReportingActionExecuter.java:44) ??????? at org.gradle.tooling.internal.provider.SetupLoggingActionExecuter.execute(SetupLoggingActionExecuter.java:45) ??????? at org.gradle.tooling.internal.provider.SetupLoggingActionExecuter.execute(SetupLoggingActionExecuter.java:30) ??????? at org.gradle.launcher.daemon.server.exec.ExecuteBuild.doBuild(ExecuteBuild.java:67) ??????? at org.gradle.launcher.daemon.server.exec.BuildCommandOnly.execute(BuildCommandOnly.java:36) ??????? at org.gradle.launcher.daemon.server.api.DaemonCommandExecution.proceed(DaemonCommandExecution.java:122) ??????? at org.gradle.launcher.daemon.server.exec.WatchForDisconnection.execute(WatchForDisconnection.java:37) ??????? at org.gradle.launcher.daemon.server.api.DaemonCommandExecution.proceed(DaemonCommandExecution.java:122) ??????? at org.gradle.launcher.daemon.server.exec.ResetDeprecationLogger.execute(ResetDeprecationLogger.java:26) ??????? at org.gradle.launcher.daemon.server.api.DaemonCommandExecution.proceed(DaemonCommandExecution.java:122) ??????? at org.gradle.launcher.daemon.server.exec.RequestStopIfSingleUsedDaemon.execute(RequestStopIfSingleUsedDaemon.java:34) ??????? at org.gradle.launcher.daemon.server.api.DaemonCommandExecution.proceed(DaemonCommandExecution.java:122) ??????? at org.gradle.launcher.daemon.server.exec.ForwardClientInput$2.call(ForwardClientInput.java:74) ??????? at org.gradle.launcher.daemon.server.exec.ForwardClientInput$2.call(ForwardClientInput.java:72) ??????? at org.gradle.util.Swapper.swap(Swapper.java:38) ??????? at org.gradle.launcher.daemon.server.exec.ForwardClientInput.execute(ForwardClientInput.java:72) ??????? at org.gradle.launcher.daemon.server.api.DaemonCommandExecution.proceed(DaemonCommandExecution.java:122) ??????? at org.gradle.launcher.daemon.server.exec.LogAndCheckHealth.execute(LogAndCheckHealth.java:55) ??????? at org.gradle.launcher.daemon.server.api.DaemonCommandExecution.proceed(DaemonCommandExecution.java:122) ??????? at org.gradle.launcher.daemon.server.exec.LogToClient.doBuild(LogToClient.java:62) ??????? at org.gradle.launcher.daemon.server.exec.BuildCommandOnly.execute(BuildCommandOnly.java:36) ??????? at org.gradle.launcher.daemon.server.api.DaemonCommandExecution.proceed(DaemonCommandExecution.java:122) ??????? at org.gradle.launcher.daemon.server.exec.EstablishBuildEnvironment.doBuild(EstablishBuildEnvironment.java:82) ??????? at org.gradle.launcher.daemon.server.exec.BuildCommandOnly.execute(BuildCommandOnly.java:36) ??????? at org.gradle.launcher.daemon.server.api.DaemonCommandExecution.proceed(DaemonCommandExecution.java:122) ??????? at org.gradle.launcher.daemon.server.exec.StartBuildOrRespondWithBusy$1.run(StartBuildOrRespondWithBusy.java:50) ??????? at org.gradle.launcher.daemon.server.DaemonStateCoordinator$1.run(DaemonStateCoordinator.java:295) ??????? at org.gradle.internal.concurrent.ExecutorPolicy$CatchAndRecordFailures.onExecute(ExecutorPolicy.java:63) ??????? at org.gradle.internal.concurrent.ManagedExecutorImpl$1.run(ManagedExecutorImpl.java:46) ??????? at org.gradle.internal.concurrent.ThreadFactoryImpl$ManagedThreadRunnable.run(ThreadFactoryImpl.java:55) Caused by: org.gradle.internal.metaobject.AbstractDynamicObject$CustomMessageMissingMethodException: Could not find method enableFeaturePreview() for arguments [STABLE_PUBLISHING] on settings 'openjdk-jfx' of type org.gradle.initialization.DefaultSettings. ??????? at org.gradle.internal.metaobject.AbstractDynamicObject.methodMissingException(AbstractDynamicObject.java:179) ??????? at org.gradle.groovy.scripts.BasicScript$ScriptDynamicObject.methodMissingException(BasicScript.java:161) ??????? at org.gradle.internal.metaobject.AbstractDynamicObject.invokeMethod(AbstractDynamicObject.java:164) ??????? at org.gradle.groovy.scripts.BasicScript.invokeMethod(BasicScript.java:83) ??????? at settings_yypk3er3dhsxk0plonuak0fi.run(/build/mag/openjdk-jfx/settings.gradle:40) ??????? at org.gradle.groovy.scripts.internal.DefaultScriptRunnerFactory$ScriptRunnerImpl.run(DefaultScriptRunnerFactory.java:90) ??????? ... 91 more On 6/10/19 6:15 PM, Thiago Milczarek Sayao wrote: > Dear Linux Users, > > I did some modifications on DND to work better with Linux: > > https://github.com/javafxports/openjdk-jfx/pull/490 > > Benefits: > > * Works on wayland > * Works across gtk2 and gtk3 with little code differences > * Works on scenebuilder (with gtk3 - currently it falls back to gtk2) > * Will be easier to port to GTK4 when it's default (may take some time). > > I have tested on Ubuntu 16.04, 18.04 and 19.04. > > Please, give feedback on the Pull Request. > > On the source there are two test apps included (tests/manual/dnd). > > Can be also tested with scenebuilder (which uses drag and drop): > > * Clone de source https://github.com/gluonhq/scenebuilder > * Build: gradlew build > * Run: java --module-path /openjdk-jfx/build/sdk/lib --add-modules javafx.web,javafx.fxml,javafx.swing,javafx.media --add-opens=javafx.fxml/javafx.fxml=ALL-UNNAMED -cp app/build/libs/scenebuilder-11.0.0-SNAPSHOT.jar com.oracle.javafx.scenebuilder.app.SceneBuilderApp > > > > From kevin.rushforth at oracle.com Mon Jun 10 20:29:31 2019 From: kevin.rushforth at oracle.com (Kevin Rushforth) Date: Mon, 10 Jun 2019 13:29:31 -0700 Subject: Will there be update of openjfx-8u? In-Reply-To: <9D8EABB130A7294DAD4857FC861F5FBF4AE1220C@dggemm509-mbx.china.huawei.com> References: <9D8EABB130A7294DAD4857FC861F5FBF4AE1220C@dggemm509-mbx.china.huawei.com> Message-ID: <51b6ad89-686b-1680-f56d-903d647a13a3@oracle.com> I recommend that you upgrade to JDK 12 + openjfx 12 if you want to keep current, since openjfx-8u is not supported. If you must stay on JDK 8, Oracle is supporting JavaFX in JDK 8 through March of 2022 [1], so you could check into that (note that this list is not the place to discuss support, however). Otherwise, you are on your own. -- Kevin [1] https://www.oracle.com/technetwork/java/java-se-support-roadmap.html On 6/9/2019 7:52 PM, guoge (A) wrote: > Thanks for your reply, Kevin > > I wonder to know if I'm still using JDK8 with JFX8 because JFX 11 can not match with JDK8 (as I know), > How can I deal with the vulnerabilities of JFX8? > > Thanks, > Guo Ge From kevin.rushforth at oracle.com Mon Jun 10 20:39:39 2019 From: kevin.rushforth at oracle.com (Kevin Rushforth) Date: Mon, 10 Jun 2019 13:39:39 -0700 Subject: Call for testing: Drag and Drop on Linux In-Reply-To: References: Message-ID: <4336b07f-7c11-2ca6-db67-dd0dec6702b9@oracle.com> Hi Thiago, I note that this is a significant change that touches more that just the Drag and Drop code, so we will need a broader discussion of your proposed enhancement, as we do with any significant change. Go ahead and file an Enhancement request so that we have a JBS issue to track this. Given where we are in the release cycle and the number of other enhancements under review, this is out of scope for JavaFX 13, but could be considered for a future release once there is general agreement of the approach. One thing I recommend starting with is a high-level overview of the changes. Also, an evaluation of whether (and how) this change might make the Glass GTK port easier to maintain going forward would be helpful. Thanks. -- Kevin On 6/10/2019 10:15 AM, Thiago Milczarek Sayao wrote: > Dear Linux Users, > > I did some modifications on DND to work better with Linux: > > https://github.com/javafxports/openjdk-jfx/pull/490 > > Benefits: > > * Works on wayland > * Works across gtk2 and gtk3 with little code differences > * Works on scenebuilder (with gtk3 - currently it falls back to gtk2) > * Will be easier to port to GTK4 when it's default (may take some time). > > I have tested on Ubuntu 16.04, 18.04 and 19.04. > > Please, give feedback on the Pull Request. > > On the source there are two test apps included (tests/manual/dnd). > > Can be also tested with scenebuilder (which uses drag and drop): > > * Clone de source https://github.com/gluonhq/scenebuilder > * Build: gradlew build > * Run: java --module-path /openjdk-jfx/build/sdk/lib --add-modules javafx.web,javafx.fxml,javafx.swing,javafx.media --add-opens=javafx.fxml/javafx.fxml=ALL-UNNAMED -cp app/build/libs/scenebuilder-11.0.0-SNAPSHOT.jar com.oracle.javafx.scenebuilder.app.SceneBuilderApp > > > > From thiago.sayao at clamed.com.br Mon Jun 10 20:53:43 2019 From: thiago.sayao at clamed.com.br (Thiago Milczarek Sayao) Date: Mon, 10 Jun 2019 20:53:43 +0000 Subject: Call for testing: Drag and Drop on Linux In-Reply-To: <4336b07f-7c11-2ca6-db67-dd0dec6702b9@oracle.com> References: , <4336b07f-7c11-2ca6-db67-dd0dec6702b9@oracle.com> Message-ID: Hi Kevin, I will file a JBS with an explanation of the changes and why I did them. I did a lot of testing on DND on the last days and I have noticed that the GTK3 DND fix that got integrated is not working completely with scenebuilder (may affect other apps). The drag is ok, but when the pointer reach the drop zone it's not detecting the mouse movement properly (it seems). I haven't touched the "drop" code on either patches. In general I trust more the new patch because it has less #ifdefs and it's more straightforward. But I understand your concerns. I will look into it (on the patch that got integrated). How much time we have until 13 release? Thanks. ________________________________ De: Kevin Rushforth Enviado: segunda-feira, 10 de junho de 2019 17:39 Para: Thiago Milczarek Sayao; openjfx-dev at openjdk.java.net Assunto: Re: Call for testing: Drag and Drop on Linux Hi Thiago, I note that this is a significant change that touches more that just the Drag and Drop code, so we will need a broader discussion of your proposed enhancement, as we do with any significant change. Go ahead and file an Enhancement request so that we have a JBS issue to track this. Given where we are in the release cycle and the number of other enhancements under review, this is out of scope for JavaFX 13, but could be considered for a future release once there is general agreement of the approach. One thing I recommend starting with is a high-level overview of the changes. Also, an evaluation of whether (and how) this change might make the Glass GTK port easier to maintain going forward would be helpful. Thanks. -- Kevin On 6/10/2019 10:15 AM, Thiago Milczarek Sayao wrote: > Dear Linux Users, > > I did some modifications on DND to work better with Linux: > > https://github.com/javafxports/openjdk-jfx/pull/490 > > Benefits: > > * Works on wayland > * Works across gtk2 and gtk3 with little code differences > * Works on scenebuilder (with gtk3 - currently it falls back to gtk2) > * Will be easier to port to GTK4 when it's default (may take some time). > > I have tested on Ubuntu 16.04, 18.04 and 19.04. > > Please, give feedback on the Pull Request. > > On the source there are two test apps included (tests/manual/dnd). > > Can be also tested with scenebuilder (which uses drag and drop): > > * Clone de source https://github.com/gluonhq/scenebuilder > * Build: gradlew build > * Run: java --module-path /openjdk-jfx/build/sdk/lib --add-modules javafx.web,javafx.fxml,javafx.swing,javafx.media --add-opens=javafx.fxml/javafx.fxml=ALL-UNNAMED -cp app/build/libs/scenebuilder-11.0.0-SNAPSHOT.jar com.oracle.javafx.scenebuilder.app.SceneBuilderApp > > > > From kevin.rushforth at oracle.com Mon Jun 10 22:00:15 2019 From: kevin.rushforth at oracle.com (Kevin Rushforth) Date: Mon, 10 Jun 2019 15:00:15 -0700 Subject: Call for testing: Drag and Drop on Linux In-Reply-To: References: <4336b07f-7c11-2ca6-db67-dd0dec6702b9@oracle.com> Message-ID: > How much time we have until 13 release? The schedule is here [1]. RDP1 starts July 8 (aka "feature freeze") RDP2 starts Aug 5 Thanks. -- Kevin On 6/10/2019 1:53 PM, Thiago Milczarek Sayao wrote: > Hi Kevin, > > I will file a JBS with an explanation of the changes and why I did them. > > I did a lot of testing on DND on the last days and I have noticed that the GTK3 DND fix that got integrated is not working completely with scenebuilder (may affect other apps). The drag is ok, but when the pointer reach the drop zone it's not detecting the mouse movement properly (it seems). I haven't touched the "drop" code on either patches. > > In general I trust more the new patch because it has less #ifdefs and it's more straightforward. But I understand your concerns. > > I will look into it (on the patch that got integrated). > > How much time we have until 13 release? Schedule is here [1]. RDP1 starts July 8 (aka "feature freeze") RDP2 starts Aug 5 -- Kevin [1] https://mail.openjdk.java.net/pipermail/openjfx-dev/2019-March/023180.html > > Thanks. > > > ________________________________ > De: Kevin Rushforth > Enviado: segunda-feira, 10 de junho de 2019 17:39 > Para: Thiago Milczarek Sayao; openjfx-dev at openjdk.java.net > Assunto: Re: Call for testing: Drag and Drop on Linux > > Hi Thiago, > > I note that this is a significant change that touches more that just the > Drag and Drop code, so we will need a broader discussion of your > proposed enhancement, as we do with any significant change. Go ahead and > file an Enhancement request so that we have a JBS issue to track this. > Given where we are in the release cycle and the number of other > enhancements under review, this is out of scope for JavaFX 13, but could > be considered for a future release once there is general agreement of > the approach. > > One thing I recommend starting with is a high-level overview of the > changes. Also, an evaluation of whether (and how) this change might make > the Glass GTK port easier to maintain going forward would be helpful. > > Thanks. > > -- Kevin > > > On 6/10/2019 10:15 AM, Thiago Milczarek Sayao wrote: >> Dear Linux Users, >> >> I did some modifications on DND to work better with Linux: >> >> https://github.com/javafxports/openjdk-jfx/pull/490 >> >> Benefits: >> >> * Works on wayland >> * Works across gtk2 and gtk3 with little code differences >> * Works on scenebuilder (with gtk3 - currently it falls back to gtk2) >> * Will be easier to port to GTK4 when it's default (may take some time). >> >> I have tested on Ubuntu 16.04, 18.04 and 19.04. >> >> Please, give feedback on the Pull Request. >> >> On the source there are two test apps included (tests/manual/dnd). >> >> Can be also tested with scenebuilder (which uses drag and drop): >> >> * Clone de source https://github.com/gluonhq/scenebuilder >> * Build: gradlew build >> * Run: java --module-path /openjdk-jfx/build/sdk/lib --add-modules javafx.web,javafx.fxml,javafx.swing,javafx.media --add-opens=javafx.fxml/javafx.fxml=ALL-UNNAMED -cp app/build/libs/scenebuilder-11.0.0-SNAPSHOT.jar com.oracle.javafx.scenebuilder.app.SceneBuilderApp >> >> >> >> From thiago.sayao at clamed.com.br Tue Jun 11 01:20:41 2019 From: thiago.sayao at clamed.com.br (Thiago Milczarek Sayao) Date: Tue, 11 Jun 2019 01:20:41 +0000 Subject: Call for testing: Drag and Drop on Linux In-Reply-To: References: <4336b07f-7c11-2ca6-db67-dd0dec6702b9@oracle.com> , Message-ID: Did some investigation. Turns out the current applied gtk3 DND patch works - on the case of scenebuilder the dragview (the window that follows the mouse and shows an image/icon) is getting on the way. It doesn't block drag destination from getting events on gtk2, but blocks on gtk3. Tried to fix it without success (for now). Posted question here: https://discourse.gnome.org/t/dnd-window-getting-in-the-way-of-dnd-events/1141 ________________________________ De: Kevin Rushforth Enviado: segunda-feira, 10 de junho de 2019 19:00 Para: Thiago Milczarek Sayao; openjfx-dev at openjdk.java.net Assunto: Re: Call for testing: Drag and Drop on Linux > How much time we have until 13 release? The schedule is here [1]. RDP1 starts July 8 (aka "feature freeze") RDP2 starts Aug 5 Thanks. -- Kevin On 6/10/2019 1:53 PM, Thiago Milczarek Sayao wrote: > Hi Kevin, > > I will file a JBS with an explanation of the changes and why I did them. > > I did a lot of testing on DND on the last days and I have noticed that the GTK3 DND fix that got integrated is not working completely with scenebuilder (may affect other apps). The drag is ok, but when the pointer reach the drop zone it's not detecting the mouse movement properly (it seems). I haven't touched the "drop" code on either patches. > > In general I trust more the new patch because it has less #ifdefs and it's more straightforward. But I understand your concerns. > > I will look into it (on the patch that got integrated). > > How much time we have until 13 release? Schedule is here [1]. RDP1 starts July 8 (aka "feature freeze") RDP2 starts Aug 5 -- Kevin [1] https://mail.openjdk.java.net/pipermail/openjfx-dev/2019-March/023180.html > > Thanks. > > > ________________________________ > De: Kevin Rushforth > Enviado: segunda-feira, 10 de junho de 2019 17:39 > Para: Thiago Milczarek Sayao; openjfx-dev at openjdk.java.net > Assunto: Re: Call for testing: Drag and Drop on Linux > > Hi Thiago, > > I note that this is a significant change that touches more that just the > Drag and Drop code, so we will need a broader discussion of your > proposed enhancement, as we do with any significant change. Go ahead and > file an Enhancement request so that we have a JBS issue to track this. > Given where we are in the release cycle and the number of other > enhancements under review, this is out of scope for JavaFX 13, but could > be considered for a future release once there is general agreement of > the approach. > > One thing I recommend starting with is a high-level overview of the > changes. Also, an evaluation of whether (and how) this change might make > the Glass GTK port easier to maintain going forward would be helpful. > > Thanks. > > -- Kevin > > > On 6/10/2019 10:15 AM, Thiago Milczarek Sayao wrote: >> Dear Linux Users, >> >> I did some modifications on DND to work better with Linux: >> >> https://github.com/javafxports/openjdk-jfx/pull/490 >> >> Benefits: >> >> * Works on wayland >> * Works across gtk2 and gtk3 with little code differences >> * Works on scenebuilder (with gtk3 - currently it falls back to gtk2) >> * Will be easier to port to GTK4 when it's default (may take some time). >> >> I have tested on Ubuntu 16.04, 18.04 and 19.04. >> >> Please, give feedback on the Pull Request. >> >> On the source there are two test apps included (tests/manual/dnd). >> >> Can be also tested with scenebuilder (which uses drag and drop): >> >> * Clone de source https://github.com/gluonhq/scenebuilder >> * Build: gradlew build >> * Run: java --module-path /openjdk-jfx/build/sdk/lib --add-modules javafx.web,javafx.fxml,javafx.swing,javafx.media --add-opens=javafx.fxml/javafx.fxml=ALL-UNNAMED -cp app/build/libs/scenebuilder-11.0.0-SNAPSHOT.jar com.oracle.javafx.scenebuilder.app.SceneBuilderApp >> >> >> >> From tom.schindl at bestsolution.at Tue Jun 11 10:25:02 2019 From: tom.schindl at bestsolution.at (Tom Schindl) Date: Tue, 11 Jun 2019 12:25:02 +0200 Subject: Will there be update of openjfx-8u? In-Reply-To: <51b6ad89-686b-1680-f56d-903d647a13a3@oracle.com> References: <9D8EABB130A7294DAD4857FC861F5FBF4AE1220C@dggemm509-mbx.china.huawei.com> <51b6ad89-686b-1680-f56d-903d647a13a3@oracle.com> Message-ID: <6bb7bdbb-30d4-7a20-af84-dba701f0f986@bestsolution.at> Hi, What I asked some time ago is that the github fork also contains the latest u8-state before it got frozen - similar to eg jfx-11, jfx-12 (and most likely soon jfx-13 branch). This would at least give us all a central place we can create our forks on (I understand nobody is willing to maintain merge back changes there). Tom On 10.06.19 22:29, Kevin Rushforth wrote: > I recommend that you upgrade to JDK 12 + openjfx 12 if you want to keep > current, since openjfx-8u is not supported. > > If you must stay on JDK 8, Oracle is supporting JavaFX in JDK 8 through > March of 2022 [1], so you could check into that (note that this list is > not the place to discuss support, however). Otherwise, you are on your own. > > -- Kevin > > [1] https://www.oracle.com/technetwork/java/java-se-support-roadmap.html > > > On 6/9/2019 7:52 PM, guoge (A) wrote: >> Thanks for your reply, Kevin >> >> I wonder to know if I'm still using JDK8 with JFX8 because JFX 11 can >> not match with JDK8 (as I know), >> How can I deal with the vulnerabilities of JFX8? >> >> Thanks, >> Guo Ge > -- Tom Schindl, CTO BestSolution.at EDV Systemhaus GmbH Eduard-Bodem-Gasse 5-7. A-6020 Innsbruck Reg. Nr. FN 222302s am Firmenbuchgericht Innsbruck From kevin.rushforth at oracle.com Tue Jun 11 11:55:44 2019 From: kevin.rushforth at oracle.com (Kevin Rushforth) Date: Tue, 11 Jun 2019 04:55:44 -0700 Subject: Will there be update of openjfx-8u? In-Reply-To: <6bb7bdbb-30d4-7a20-af84-dba701f0f986@bestsolution.at> References: <9D8EABB130A7294DAD4857FC861F5FBF4AE1220C@dggemm509-mbx.china.huawei.com> <51b6ad89-686b-1680-f56d-903d647a13a3@oracle.com> <6bb7bdbb-30d4-7a20-af84-dba701f0f986@bestsolution.at> Message-ID: If someone wants to create a new project and fork the openjfx/8u-dev/rt repo there, that would be fine...as long as everyone understand that it is a fork of an unmaintained code base. Since openjfx/8u is not being maintained, neither the javafxports/openjdk-jfx repo nor the new (for project Skara) openjdk project on GitHub would be suitable. -- Kevin On 6/11/2019 3:25 AM, Tom Schindl wrote: > Hi, > > What I asked some time ago is that the github fork also contains the > latest u8-state before it got frozen - similar to eg jfx-11, jfx-12 (and > most likely soon jfx-13 branch). > > This would at least give us all a central place we can create our forks > on (I understand nobody is willing to maintain merge back changes there). > > Tom > > On 10.06.19 22:29, Kevin Rushforth wrote: >> I recommend that you upgrade to JDK 12 + openjfx 12 if you want to keep >> current, since openjfx-8u is not supported. >> >> If you must stay on JDK 8, Oracle is supporting JavaFX in JDK 8 through >> March of 2022 [1], so you could check into that (note that this list is >> not the place to discuss support, however). Otherwise, you are on your own. >> >> -- Kevin >> >> [1] https://www.oracle.com/technetwork/java/java-se-support-roadmap.html >> >> >> On 6/9/2019 7:52 PM, guoge (A) wrote: >>> Thanks for your reply, Kevin >>> >>> I wonder to know if I'm still using JDK8 with JFX8 because JFX 11 can >>> not match with JDK8 (as I know), >>> How can I deal with the vulnerabilities of JFX8? >>> >>> Thanks, >>> Guo Ge From tom.schindl at bestsolution.at Tue Jun 11 13:00:51 2019 From: tom.schindl at bestsolution.at (Tom Schindl) Date: Tue, 11 Jun 2019 15:00:51 +0200 Subject: Will there be update of openjfx-8u? In-Reply-To: References: <9D8EABB130A7294DAD4857FC861F5FBF4AE1220C@dggemm509-mbx.china.huawei.com> <51b6ad89-686b-1680-f56d-903d647a13a3@oracle.com> <6bb7bdbb-30d4-7a20-af84-dba701f0f986@bestsolution.at> Message-ID: <32eee318-737a-051d-2ca1-ce3be4b65faf@bestsolution.at> Hi Kevin, Well isn't that true as well for jfx-12 - or is this maintained? What makes jfx-12 different from jfx-8? Or is the plan to remove jfx-12 once jfx-13 is released, ...? Anyways, I accept this and I'll see how I can get that forked to my own github account (once I have a need for it :-) Tom On 11.06.19 13:55, Kevin Rushforth wrote: > If someone wants to create a new project and fork the openjfx/8u-dev/rt > repo there, that would be fine...as long as everyone understand that it > is a fork of an unmaintained code base. > > Since openjfx/8u is not being maintained, neither the > javafxports/openjdk-jfx repo nor the new (for project Skara) openjdk > project on GitHub would be suitable. > > -- Kevin > > > On 6/11/2019 3:25 AM, Tom Schindl wrote: >> Hi, >> >> What I asked some time ago is that the github fork also contains the >> latest u8-state before it got frozen - similar to eg jfx-11, jfx-12 (and >> most likely soon jfx-13 branch). >> >> This would at least give us all a central place we can create our forks >> on (I understand nobody is willing to maintain merge back changes there). >> >> Tom >> >> On 10.06.19 22:29, Kevin Rushforth wrote: >>> I recommend that you upgrade to JDK 12 + openjfx 12 if you want to keep >>> current, since openjfx-8u is not supported. >>> >>> If you must stay on JDK 8, Oracle is supporting JavaFX in JDK 8 through >>> March of 2022 [1], so you could check into that (note that this list is >>> not the place to discuss support, however). Otherwise, you are on >>> your own. >>> >>> -- Kevin >>> >>> [1] https://www.oracle.com/technetwork/java/java-se-support-roadmap.html >>> >>> >>> On 6/9/2019 7:52 PM, guoge (A) wrote: >>>> Thanks for your reply, Kevin >>>> >>>> I wonder to know if I'm still using JDK8 with JFX8 because JFX 11 can >>>> not match with JDK8 (as I know), >>>> How can I deal with the vulnerabilities of JFX8? >>>> >>>> Thanks, >>>> Guo Ge > -- Tom Schindl, CTO BestSolution.at EDV Systemhaus GmbH Eduard-Bodem-Gasse 5-7. A-6020 Innsbruck Reg. Nr. FN 222302s am Firmenbuchgericht Innsbruck From thiago.sayao at clamed.com.br Tue Jun 11 17:08:22 2019 From: thiago.sayao at clamed.com.br (Thiago Milczarek Sayao) Date: Tue, 11 Jun 2019 17:08:22 +0000 Subject: Call for testing: Drag and Drop on Linux In-Reply-To: References: Message-ID: Some other test toys: ./gradlew apps java @build/run.args -cp apps/toys/DragDrop/dist/DragDrop.jar dragdrop.DragDropWithControls java @build/run.args -cp apps/toys/DragDrop/dist/DragDrop.jar dragdrop.DragDropColor Both work well for me (Ubuntu 18.04). ________________________________ De: openjfx-dev em nome de Thiago Milczarek Sayao Enviado: segunda-feira, 10 de junho de 2019 14:15 Para: openjfx-dev at openjdk.java.net Assunto: Call for testing: Drag and Drop on Linux Dear Linux Users, I did some modifications on DND to work better with Linux: https://github.com/javafxports/openjdk-jfx/pull/490 Benefits: * Works on wayland * Works across gtk2 and gtk3 with little code differences * Works on scenebuilder (with gtk3 - currently it falls back to gtk2) * Will be easier to port to GTK4 when it's default (may take some time). I have tested on Ubuntu 16.04, 18.04 and 19.04. Please, give feedback on the Pull Request. On the source there are two test apps included (tests/manual/dnd). Can be also tested with scenebuilder (which uses drag and drop): * Clone de source https://github.com/gluonhq/scenebuilder * Build: gradlew build * Run: java --module-path /openjdk-jfx/build/sdk/lib --add-modules javafx.web,javafx.fxml,javafx.swing,javafx.media --add-opens=javafx.fxml/javafx.fxml=ALL-UNNAMED -cp app/build/libs/scenebuilder-11.0.0-SNAPSHOT.jar com.oracle.javafx.scenebuilder.app.SceneBuilderApp From munn7773 at gmail.com Thu Jun 13 13:52:20 2019 From: munn7773 at gmail.com (Andrew Munn) Date: Thu, 13 Jun 2019 09:52:20 -0400 Subject: NPE when restoring window size/position Message-ID: I frequently get an NPE when calling stage.show() after restoring window size/location on startup. I can prevent it by calling stage.setX(value) with a smaller X value before calling stage.show(). I filed this bug: https://github.com/javafxports/openjdk-jfx/issues/492 Does anyone have a suggestion or know a fix for this? From tom.schindl at bestsolution.at Thu Jun 13 15:30:20 2019 From: tom.schindl at bestsolution.at (Tom Schindl) Date: Thu, 13 Jun 2019 17:30:20 +0200 Subject: Previews for shared buffer PR In-Reply-To: References: Message-ID: <1b48fffb-03ed-16f6-4a9d-e119e3d06672@bestsolution.at> Hi, This is good news but may I suggest we do something similar to OpenJDK who also has explictly marked experimental/preview features shipping in releases who can naturally get removed in a follow up release. I would appreciate this in contrast to not getting this feature integrated at all in FX-13. Tom On 07.06.19 11:40, Johan Vos wrote: > The PR discussed in https://github.com/javafxports/openjdk-jfx/pull/472, > addressing https://bugs.openjdk.java.net/browse/JDK-8167148 provides a very > much wanted feature. It is important that things are done in the right way > so that the code can be maintained in the long-term future. > Therefore, feedback on this PR is extremely important before we can > consider merging it. Once this PR is merged, there is no easy way back. It > is possible to add more functionality, hence my preference is to only > implement the functionality that is safe and stable, while allowing other > functionality to be added later or by third-party extensions. (e.g. > (avoiding) copying from/to GPU) > > To make it easier to give feedback, we've build early access versions of > SDK's including this PR. Note that the PR is not merged, hence not > available in the regular EA downloads! > > If you want to give it a try, download the SDK's from the URL's below. > There is a test in tests/manual/graphics/PixelBufferPerformanceTest ( > https://github.com/arapte/openjdk-jfx/blob/JDK-8167148-NIO-ByteBuffer/tests/manual/graphics/PixelBufferPerformanceTest.java) > that should get you started. > > https://download2.gluonhq.com/openjfx/forks/pixelbuffer/openjfx-13-pixelbuffer-ea+9_linux-x64_bin-jmods.zip > https://download2.gluonhq.com/openjfx/forks/pixelbuffer/openjfx-13-pixelbuffer-ea+9_linux-x64_bin-sdk.zip > https://download2.gluonhq.com/openjfx/forks/pixelbuffer/openjfx-13-pixelbuffer-ea+9_osx-x64_bin-jmods.zip > https://download2.gluonhq.com/openjfx/forks/pixelbuffer/openjfx-13-pixelbuffer-ea+9_osx-x64_bin-sdk.zip > https://download2.gluonhq.com/openjfx/forks/pixelbuffer/openjfx-13-pixelbuffer-ea+9_windows-x64_bin-jmods.zip > https://download2.gluonhq.com/openjfx/forks/pixelbuffer/openjfx-13-pixelbuffer-ea+9_windows-x64_bin-sdk.zip > > - Johan > -- Tom Schindl, CTO BestSolution.at EDV Systemhaus GmbH Eduard-Bodem-Gasse 5-7. A-6020 Innsbruck Reg. Nr. FN 222302s am Firmenbuchgericht Innsbruck From kevin.rushforth at oracle.com Thu Jun 13 18:06:11 2019 From: kevin.rushforth at oracle.com (Kevin Rushforth) Date: Thu, 13 Jun 2019 11:06:11 -0700 Subject: Previews for shared buffer PR In-Reply-To: <1b48fffb-03ed-16f6-4a9d-e119e3d06672@bestsolution.at> References: <1b48fffb-03ed-16f6-4a9d-e119e3d06672@bestsolution.at> Message-ID: The JDK has two mechanisms for introducing "experimental" features: 1. Preview features, which are new language or VM features that are enabled by a command line switch 2. Incubator modules for new library code Neither of those address adding API to an existing package / class in an existing module, and it would be a fair bit of work to refactor it into an incubator module, not to mention the work needed to deliver a new module... -- Kevin On 6/13/2019 8:30 AM, Tom Schindl wrote: > Hi, > > This is good news but may I suggest we do something similar to OpenJDK > who also has explictly marked experimental/preview features shipping in > releases who can naturally get removed in a follow up release. > > I would appreciate this in contrast to not getting this feature > integrated at all in FX-13. > > Tom > > On 07.06.19 11:40, Johan Vos wrote: >> The PR discussed in https://github.com/javafxports/openjdk-jfx/pull/472, >> addressing https://bugs.openjdk.java.net/browse/JDK-8167148 provides a very >> much wanted feature. It is important that things are done in the right way >> so that the code can be maintained in the long-term future. >> Therefore, feedback on this PR is extremely important before we can >> consider merging it. Once this PR is merged, there is no easy way back. It >> is possible to add more functionality, hence my preference is to only >> implement the functionality that is safe and stable, while allowing other >> functionality to be added later or by third-party extensions. (e.g. >> (avoiding) copying from/to GPU) >> >> To make it easier to give feedback, we've build early access versions of >> SDK's including this PR. Note that the PR is not merged, hence not >> available in the regular EA downloads! >> >> If you want to give it a try, download the SDK's from the URL's below. >> There is a test in tests/manual/graphics/PixelBufferPerformanceTest ( >> https://github.com/arapte/openjdk-jfx/blob/JDK-8167148-NIO-ByteBuffer/tests/manual/graphics/PixelBufferPerformanceTest.java) >> that should get you started. >> >> https://download2.gluonhq.com/openjfx/forks/pixelbuffer/openjfx-13-pixelbuffer-ea+9_linux-x64_bin-jmods.zip >> https://download2.gluonhq.com/openjfx/forks/pixelbuffer/openjfx-13-pixelbuffer-ea+9_linux-x64_bin-sdk.zip >> https://download2.gluonhq.com/openjfx/forks/pixelbuffer/openjfx-13-pixelbuffer-ea+9_osx-x64_bin-jmods.zip >> https://download2.gluonhq.com/openjfx/forks/pixelbuffer/openjfx-13-pixelbuffer-ea+9_osx-x64_bin-sdk.zip >> https://download2.gluonhq.com/openjfx/forks/pixelbuffer/openjfx-13-pixelbuffer-ea+9_windows-x64_bin-jmods.zip >> https://download2.gluonhq.com/openjfx/forks/pixelbuffer/openjfx-13-pixelbuffer-ea+9_windows-x64_bin-sdk.zip >> >> - Johan >> From kevin.rushforth at oracle.com Thu Jun 13 18:06:48 2019 From: kevin.rushforth at oracle.com (Kevin Rushforth) Date: Thu, 13 Jun 2019 11:06:48 -0700 Subject: NPE when restoring window size/position In-Reply-To: References: Message-ID: <24d14d75-79b4-e2fc-86ef-94682e471b8c@oracle.com> This does look like a bug in JavaFX. As noted in the README [1], we will need a bug in JBS to track this. Can you file one at bugreport.java.com [2]? Also, please provide a simple test program. Thanks. -- Kevin [1] https://github.com/javafxports/openjdk-jfx#issue-tracking [2] http://bugreport.java.com/ On 6/13/2019 6:52 AM, Andrew Munn wrote: > I frequently get an NPE when calling stage.show() after restoring window > size/location on startup. I can prevent it by calling stage.setX(value) > with a smaller X value before calling stage.show(). > > I filed this bug: > https://github.com/javafxports/openjdk-jfx/issues/492 > > Does anyone have a suggestion or know a fix for this? From kevin.rushforth at oracle.com Fri Jun 14 17:20:40 2019 From: kevin.rushforth at oracle.com (Kevin Rushforth) Date: Fri, 14 Jun 2019 10:20:40 -0700 Subject: Repo deletion request Message-ID: Hi Iris, Please delete the following obsolete or temporary FX forests from closedjdk: http://closedjdk.us.oracle.com/openjfx/ ??? 8u-psu ??? 8u-psu-dev ??? jfx-tmp ??? jfx-cpu-tmp ??? jfx-dev.old ??? jfx-cpu-dev.old (NOTE: We plan to _keep_ jfx.old indefinitely) -- Kevin From kevin.rushforth at oracle.com Fri Jun 14 17:26:16 2019 From: kevin.rushforth at oracle.com (Kevin Rushforth) Date: Fri, 14 Jun 2019 10:26:16 -0700 Subject: Repo deletion request In-Reply-To: References: Message-ID: <8005c8b1-45b3-f182-732b-77c96c846f95@oracle.com> Please ignore, this was meant for ops not openjfx... -- Kevin On 6/14/2019 10:20 AM, Kevin Rushforth wrote: > Hi Iris, > > Please delete the following obsolete or temporary FX forests from > closedjdk: > > http://closedjdk.us.oracle.com/openjfx/ > ??? 8u-psu > ??? 8u-psu-dev > ??? jfx-tmp > ??? jfx-cpu-tmp > ??? jfx-dev.old > ??? jfx-cpu-dev.old > > (NOTE: We plan to _keep_ jfx.old indefinitely) > > -- Kevin > From youngty1997 at gmail.com Sat Jun 15 02:05:18 2019 From: youngty1997 at gmail.com (Ty Young) Date: Fri, 14 Jun 2019 21:05:18 -0500 Subject: BUG: TreeView setPrefHeight CSS freakout Message-ID: <7c49faba-d295-aaa1-e01f-023b0f32a959@gmail.com> Attempting to set the preferred height of a TreeView or content that would otherwise expand the component(super.setPrefHeight or another component in the containing node) results in a massive freakout resulting in a memory leak and extremely high CPU usage. Using Netbean's method profiler[1] shows that VirtualFlow.addTrailingCells is taking 130 seconds. Going down a leaf shows that Node.applyCss and Node.processCss are taking up the majority(all? Numbers aren't adding up.) of the time and presumably causing the memory leak and high CPU usage. Even after removing any custom CSS stylesheets this still happens. This only seems to affect TreeView as well as no other component(maybe ListView since they are similar?) has this issue. Maybe related is a CSS bug where an in-between state between a scrollbar showing in the TreeView and when there is not. In this state, a visible white space can be seen at the bottom where the scrollbar was(although the white space is smaller). If you are using the default JavaFX CSS stylesheet you won't see this as the background color is white. Clicking a TreeView item seems to update the TreeView and fix this white space issue. ScrollPane and ScrollBars are really broken in JavaFX in general under Linux so its hard to say whether or not it is related. Any ideas on what's causing all this? [1] https://imgur.com/a/DT3eiNj From johan.vos at gluonhq.com Mon Jun 17 10:23:16 2019 From: johan.vos at gluonhq.com (Johan Vos) Date: Mon, 17 Jun 2019 12:23:16 +0200 Subject: RFR: JDK-8226234: Simplify iOS properties Message-ID: Hi, Please review PR #501 https://github.com/javafxports/openjdk-jfx/pull/501 which fixes #500 https://github.com/javafxports/openjdk-jfx/issues/500 or https://bugs.openjdk.java.net/browse/JDK-8226234 This is a change that should not affect non-ios platforms. Thanks, - Johan From martijnverburg at gmail.com Mon Jun 17 11:03:46 2019 From: martijnverburg at gmail.com (Martijn Verburg) Date: Mon, 17 Jun 2019 12:03:46 +0100 Subject: Will there be update of openjfx-8u? In-Reply-To: <32eee318-737a-051d-2ca1-ce3be4b65faf@bestsolution.at> References: <9D8EABB130A7294DAD4857FC861F5FBF4AE1220C@dggemm509-mbx.china.huawei.com> <51b6ad89-686b-1680-f56d-903d647a13a3@oracle.com> <6bb7bdbb-30d4-7a20-af84-dba701f0f986@bestsolution.at> <32eee318-737a-051d-2ca1-ce3be4b65faf@bestsolution.at> Message-ID: Out of curiosity - what was the last release of OpenJFX 8? If I'm reading the repos correctly it should be 8u60? Cheers, Martijn On Tue, 11 Jun 2019 at 14:01, Tom Schindl wrote: > Hi Kevin, > > Well isn't that true as well for jfx-12 - or is this maintained? What > makes jfx-12 different from jfx-8? Or is the plan to remove jfx-12 once > jfx-13 is released, ...? > > Anyways, I accept this and I'll see how I can get that forked to my own > github account (once I have a need for it :-) > > Tom > > On 11.06.19 13:55, Kevin Rushforth wrote: > > If someone wants to create a new project and fork the openjfx/8u-dev/rt > > repo there, that would be fine...as long as everyone understand that it > > is a fork of an unmaintained code base. > > > > Since openjfx/8u is not being maintained, neither the > > javafxports/openjdk-jfx repo nor the new (for project Skara) openjdk > > project on GitHub would be suitable. > > > > -- Kevin > > > > > > On 6/11/2019 3:25 AM, Tom Schindl wrote: > >> Hi, > >> > >> What I asked some time ago is that the github fork also contains the > >> latest u8-state before it got frozen - similar to eg jfx-11, jfx-12 (and > >> most likely soon jfx-13 branch). > >> > >> This would at least give us all a central place we can create our forks > >> on (I understand nobody is willing to maintain merge back changes > there). > >> > >> Tom > >> > >> On 10.06.19 22:29, Kevin Rushforth wrote: > >>> I recommend that you upgrade to JDK 12 + openjfx 12 if you want to keep > >>> current, since openjfx-8u is not supported. > >>> > >>> If you must stay on JDK 8, Oracle is supporting JavaFX in JDK 8 through > >>> March of 2022 [1], so you could check into that (note that this list is > >>> not the place to discuss support, however). Otherwise, you are on > >>> your own. > >>> > >>> -- Kevin > >>> > >>> [1] > https://www.oracle.com/technetwork/java/java-se-support-roadmap.html > >>> > >>> > >>> On 6/9/2019 7:52 PM, guoge (A) wrote: > >>>> Thanks for your reply, Kevin > >>>> > >>>> I wonder to know if I'm still using JDK8 with JFX8 because JFX 11 can > >>>> not match with JDK8 (as I know), > >>>> How can I deal with the vulnerabilities of JFX8? > >>>> > >>>> Thanks, > >>>> Guo Ge > > > > -- > Tom Schindl, CTO > BestSolution.at EDV Systemhaus GmbH > Eduard-Bodem-Gasse 5-7. A-6020 Innsbruck > Reg. Nr. FN 222302s am Firmenbuchgericht Innsbruck > From martin.desruisseaux at geomatys.com Mon Jun 17 12:45:29 2019 From: martin.desruisseaux at geomatys.com (Martin Desruisseaux) Date: Mon, 17 Jun 2019 14:45:29 +0200 Subject: Previews for shared buffer PR In-Reply-To: References: Message-ID: <0be29832-bb05-478f-c879-8edcf18dd441@geomatys.com> This feature seems very interesting, thanks for doing that! In order to allow the use of JavaFX as a replacement of Java2D for Earth Observation applications (i.e. visualizing terabytes of remote sensing data), would it be possible to create an image without copying data in JavaFX, by specifying the following pixel layout information? 1. Possibility to choose whether sample values in the image are banded or interleaved: * Banded: all red values in an array, all green values in another array, all blue values in another array. * Interleaved: a single array with ARGB values packed as integers. 2. Possibility to specify pixel stride (not necessarily 1) and scanline stride (not necessarily image width). 3. Possibility to use a single array of integers whose values are mapped to colors using a lookup table (was IndexColorModel in Java2D). In Java2D it was done by java.awt.image.SampleModel and ColorModel subclasses. That class hierarchy does not need to be reproduced, but would this PR provides equivalent functionalities, or at least the above-cited subset of functionalities? ??? Regards, ??? ??? Martin Desruisseaux Le 07/06/2019 ? 14:01, openjfx-dev-request at openjdk.java.net a ?crit?: > Date: Fri, 7 Jun 2019 11:40:44 +0200 > From: Johan Vos > To: "openjfx-dev at openjdk.java.net List" > Subject: Previews for shared buffer PR > > The PR discussed in https://github.com/javafxports/openjdk-jfx/pull/472, > addressing https://bugs.openjdk.java.net/browse/JDK-8167148 provides a very > much wanted feature. It is important that things are done in the right way > so that the code can be maintained in the long-term future. > Therefore, feedback on this PR is extremely important before we can > consider merging it. Once this PR is merged, there is no easy way back. It > is possible to add more functionality, hence my preference is to only > implement the functionality that is safe and stable, while allowing other > functionality to be added later or by third-party extensions. (e.g. > (avoiding) copying from/to GPU) > > To make it easier to give feedback, we've build early access versions of > SDK's including this PR. Note that the PR is not merged, hence not > available in the regular EA downloads! > > If you want to give it a try, download the SDK's from the URL's below. > There is a test in tests/manual/graphics/PixelBufferPerformanceTest ( > https://github.com/arapte/openjdk-jfx/blob/JDK-8167148-NIO-ByteBuffer/tests/manual/graphics/PixelBufferPerformanceTest.java) > that should get you started. > > https://download2.gluonhq.com/openjfx/forks/pixelbuffer/openjfx-13-pixelbuffer-ea+9_linux-x64_bin-jmods.zip > https://download2.gluonhq.com/openjfx/forks/pixelbuffer/openjfx-13-pixelbuffer-ea+9_linux-x64_bin-sdk.zip > https://download2.gluonhq.com/openjfx/forks/pixelbuffer/openjfx-13-pixelbuffer-ea+9_osx-x64_bin-jmods.zip > https://download2.gluonhq.com/openjfx/forks/pixelbuffer/openjfx-13-pixelbuffer-ea+9_osx-x64_bin-sdk.zip > https://download2.gluonhq.com/openjfx/forks/pixelbuffer/openjfx-13-pixelbuffer-ea+9_windows-x64_bin-jmods.zip > https://download2.gluonhq.com/openjfx/forks/pixelbuffer/openjfx-13-pixelbuffer-ea+9_windows-x64_bin-sdk.zip From kevin.rushforth at oracle.com Mon Jun 17 17:30:52 2019 From: kevin.rushforth at oracle.com (Kevin Rushforth) Date: Mon, 17 Jun 2019 10:30:52 -0700 Subject: Will there be update of openjfx-8u? In-Reply-To: References: <9D8EABB130A7294DAD4857FC861F5FBF4AE1220C@dggemm509-mbx.china.huawei.com> <51b6ad89-686b-1680-f56d-903d647a13a3@oracle.com> <6bb7bdbb-30d4-7a20-af84-dba701f0f986@bestsolution.at> <32eee318-737a-051d-2ca1-ce3be4b65faf@bestsolution.at> Message-ID: <4c29a54c-ba17-743e-37e4-6b4a8844b513@oracle.com> As mentioned in this message [1], the last release of OpenJFX 8 was 8u202 in January 2019, in conjunction with the last Oracle-led OpenJDK release of the same. You can see the 8u202-ga tag [2] in the openjfx 8u repo. -- Kevin [1] https://mail.openjdk.java.net/pipermail/openjfx-dev/2019-January/023039.html [2] http://hg.openjdk.java.net/openjfx/8u/rt/tags On 6/17/2019 4:03 AM, Martijn Verburg wrote: > Out of curiosity - what was the last release of OpenJFX 8? If I'm reading > the repos correctly it should be 8u60? > > Cheers, > Martijn > > > On Tue, 11 Jun 2019 at 14:01, Tom Schindl > wrote: > >> Hi Kevin, >> >> Well isn't that true as well for jfx-12 - or is this maintained? What >> makes jfx-12 different from jfx-8? Or is the plan to remove jfx-12 once >> jfx-13 is released, ...? >> >> Anyways, I accept this and I'll see how I can get that forked to my own >> github account (once I have a need for it :-) >> >> Tom >> >> On 11.06.19 13:55, Kevin Rushforth wrote: >>> If someone wants to create a new project and fork the openjfx/8u-dev/rt >>> repo there, that would be fine...as long as everyone understand that it >>> is a fork of an unmaintained code base. >>> >>> Since openjfx/8u is not being maintained, neither the >>> javafxports/openjdk-jfx repo nor the new (for project Skara) openjdk >>> project on GitHub would be suitable. >>> >>> -- Kevin >>> >>> >>> On 6/11/2019 3:25 AM, Tom Schindl wrote: >>>> Hi, >>>> >>>> What I asked some time ago is that the github fork also contains the >>>> latest u8-state before it got frozen - similar to eg jfx-11, jfx-12 (and >>>> most likely soon jfx-13 branch). >>>> >>>> This would at least give us all a central place we can create our forks >>>> on (I understand nobody is willing to maintain merge back changes >> there). >>>> Tom >>>> >>>> On 10.06.19 22:29, Kevin Rushforth wrote: >>>>> I recommend that you upgrade to JDK 12 + openjfx 12 if you want to keep >>>>> current, since openjfx-8u is not supported. >>>>> >>>>> If you must stay on JDK 8, Oracle is supporting JavaFX in JDK 8 through >>>>> March of 2022 [1], so you could check into that (note that this list is >>>>> not the place to discuss support, however). Otherwise, you are on >>>>> your own. >>>>> >>>>> -- Kevin >>>>> >>>>> [1] >> https://www.oracle.com/technetwork/java/java-se-support-roadmap.html >>>>> >>>>> On 6/9/2019 7:52 PM, guoge (A) wrote: >>>>>> Thanks for your reply, Kevin >>>>>> >>>>>> I wonder to know if I'm still using JDK8 with JFX8 because JFX 11 can >>>>>> not match with JDK8 (as I know), >>>>>> How can I deal with the vulnerabilities of JFX8? >>>>>> >>>>>> Thanks, >>>>>> Guo Ge >> -- >> Tom Schindl, CTO >> BestSolution.at EDV Systemhaus GmbH >> Eduard-Bodem-Gasse 5-7. A-6020 Innsbruck >> Reg. Nr. FN 222302s am Firmenbuchgericht Innsbruck >> From jacr2506 at hotmail.com Mon Jun 17 22:35:32 2019 From: jacr2506 at hotmail.com (Joey Ruiz) Date: Mon, 17 Jun 2019 22:35:32 +0000 Subject: How to inject javascript function to be used before finishing loading dom in JavaFX Message-ID: I'm creating a javaFX browser integrated with a swing application. This browser opens a webpage that makes a call to a javascript function that should be injected befor the document finishes loading. Is there a way to do something similar to what BrowserFunction does for a SWT browser? So that way I can use the injected function any time and at any open page within the JavaFX browser. I just tried injecting the function with a member by using the JSObject class. This code is added in the loadWorker of the WebEngine with the stateProperty. I also tested it by adding this to the documentProperty by I'm still not able to make it work. The function is correctly added but it's not used because it seems to be injected after the document finished loading and I need it before that. window = (JSObject) engine.executeScript("window"); window.setMember("app", jl); From bruno.borges at gmail.com Tue Jun 18 17:04:54 2019 From: bruno.borges at gmail.com (Bruno Borges) Date: Tue, 18 Jun 2019 10:04:54 -0700 Subject: How to inject javascript function to be used before finishing loading dom in JavaFX In-Reply-To: References: Message-ID: Check the source code of my WebFX project. I hack the WebEngine dom object to add some functions before things are loaded. GitHub.com/brunoborges/webfx On Mon, Jun 17, 2019, 15:36 Joey Ruiz wrote: > I'm creating a javaFX browser integrated with a swing application. This > browser opens a webpage that makes a call to a javascript function that > should be injected befor the document finishes loading. Is there a way to > do something similar to what BrowserFunction does for a SWT browser? So > that way I can use the injected function any time and at any open page > within the JavaFX browser. > > I just tried injecting the function with a member by using the JSObject > class. This code is added in the loadWorker of the WebEngine with the > stateProperty. I also tested it by adding this to the documentProperty by > I'm still not able to make it work. The function is correctly added but > it's not used because it seems to be injected after the document finished > loading and I need it before that. > > window = (JSObject) engine.executeScript("window"); > > window.setMember("app", jl); > > From kevin.rushforth at oracle.com Tue Jun 18 21:32:40 2019 From: kevin.rushforth at oracle.com (Kevin Rushforth) Date: Tue, 18 Jun 2019 14:32:40 -0700 Subject: RFR: JDK-8226274: NPE in WinWindow.notifyMoving when Stage with no Scene is shown on 2nd monitor Message-ID: Please review the following fix for an NPE on a multi-monitor system: https://bugs.openjdk.java.net/browse/JDK-8226274 https://github.com/javafxports/openjdk-jfx/pull/503 -- Kevin From arunprasad.rajkumar at oracle.com Wed Jun 19 10:24:58 2019 From: arunprasad.rajkumar at oracle.com (Arunprasad Rajkumar) Date: Wed, 19 Jun 2019 15:54:58 +0530 Subject: JDK-8222360: Remove spurious empty file from repo Message-ID: <95D34B75-0E0E-4CDF-8B27-B3372839A741@oracle.com> Hi Kevin, Please review the following simple PR., it just removes an empty file which got added part of JDK-8211454. https://github.com/javafxports/openjdk-jfx/pull/504 https://bugs.openjdk.java.net/browse/JDK-8222360 Thanks, Arun From thiago.sayao at clamed.com.br Wed Jun 19 12:26:06 2019 From: thiago.sayao at clamed.com.br (Thiago Milczarek Sayao) Date: Wed, 19 Jun 2019 12:26:06 +0000 Subject: Possible bug on linux + gnome (ubuntu 18.04) Message-ID: Could anyone confirm this? Run the sample below, click the "Run" button and then close the "Owner Stage". On my machine, gnome shell crashes, sometimes X crashes. import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.control.Button; import javafx.scene.control.Label; import javafx.scene.layout.HBox; import javafx.scene.layout.StackPane; import javafx.stage.Stage; import java.lang.ref.WeakReference; import java.util.ArrayList; import java.util.Collections; import java.util.List; public class InitOwnerMemoryLeak extends Application { private static final List> stages = Collections.synchronizedList(new ArrayList<>()); public static void main(String[] args) { launch(args); } @Override public void start(Stage stage) { HBox hbox = new HBox(); Button button = new Button("Run"); button.setOnAction(event -> { Stage ownerStage = new Stage(); ownerStage.setTitle("Owner Stage"); stages.add(new WeakReference<>(ownerStage)); StackPane ownerStackPane = new StackPane(); ownerStackPane.setPrefSize(400, 400); ownerStage.setScene(new Scene(ownerStackPane)); ownerStage.show(); Stage s = createStage(ownerStage); s.show(); Stage s2 = createStage(s); s2.show(); Stage s3 = createStage(s2); s3.show(); }); Button forceGc = new Button("Run GC"); forceGc.setOnAction(e -> System.gc()); Button stageCount = new Button("Print Stages"); stageCount.setOnAction(e -> { System.out.println("Stages: "); for(WeakReference stageWeakReference : stages) { Stage s = stageWeakReference.get(); if(s != null) { System.out.println("Stage: "+s.getTitle()); } } }); hbox.getChildren().addAll(button, forceGc, stageCount); stage.setScene(new Scene(hbox)); stage.show(); } private Stage createStage(Stage owner) { Stage subStage = new Stage(); subStage.setTitle("Sub Stage"); subStage.initOwner(owner); StackPane subStackPane = new StackPane(); subStackPane.setPrefSize(200, 200); Label label = new Label("Close my owner to cause memory leak"); subStackPane.getChildren().add(label); subStage.setScene(new Scene(subStackPane)); stages.add(new WeakReference<>(subStage)); return subStage; } } From ambarish.rapte at oracle.com Wed Jun 19 16:53:51 2019 From: ambarish.rapte at oracle.com (Ambarish Rapte) Date: Wed, 19 Jun 2019 09:53:51 -0700 (PDT) Subject: [openjfx13] RFR : JDK-8222211 : Creating animated gif image from non FX App thread causes exception Message-ID: Hi All, Please review this fix, JBS: https://bugs.openjdk.java.net/browse/JDK-8222211 Webrev: http://cr.openjdk.java.net/~arapte/fx/8222211/webrev.00/ Regards, Ambarish From arunprasad.rajkumar at oracle.com Thu Jun 20 09:48:30 2019 From: arunprasad.rajkumar at oracle.com (Arunprasad Rajkumar) Date: Thu, 20 Jun 2019 15:18:30 +0530 Subject: [RFR][openjfx13] 8225203: Update SQLite to version 3.28.0 Message-ID: Hi Kevin, Johan, Please review the following PR, which upgrades sqlite to 3.28.0. https://github.com/javafxports/openjdk-jfx/pull/505 https://bugs.openjdk.java.net/browse/JDK-8225203 Thanks, Arun From ambarish.rapte at oracle.com Thu Jun 20 18:48:52 2019 From: ambarish.rapte at oracle.com (Ambarish Rapte) Date: Thu, 20 Jun 2019 11:48:52 -0700 (PDT) Subject: [openjfx13] RFR : JDK-8222457 : TabPane doesn't respect order of TabPane.getTabs() list Message-ID: Hi All, Please review this fix, Webrev: http://cr.openjdk.java.net/~arapte/fx/8222457/webrev.00/ JBS: https://bugs.openjdk.java.net/browse/JDK-8222457 Regards, Ambarish From prasanta.sadhukhan at oracle.com Fri Jun 21 05:03:24 2019 From: prasanta.sadhukhan at oracle.com (Prasanta Sadhukhan) Date: Fri, 21 Jun 2019 10:33:24 +0530 Subject: [13] RFR JDK-8222212:Memory Leak with SwingNode using Drag and Drop function Message-ID: <709c7f54-1bb5-168d-80b6-c3319b544bbc@oracle.com> Hi All, Please review fix for SwingNode memory leak when SwingNode content has a drop target therefore, initiating a DnD. FXDnd holds a strong reference to SwingNode thereby preventing it to be disposed. Proposed fix is to weakreference the swingnode object in FXDnDInteropN class. Bug: https://bugs.openjdk.java.net/browse/JDK-8222212 webrev: http://cr.openjdk.java.net/~psadhukhan/8222212/webrev.0/ Regards Prasanta From info at orenda-it.nl Fri Jun 21 07:52:25 2019 From: info at orenda-it.nl (Eef Custers) Date: Fri, 21 Jun 2019 09:52:25 +0200 Subject: How to make a large cursor in JavaFX 12 Message-ID: Hi, I am working on an application for visual impaired users. I like to create a large cursor, but I cannot find a way how to do that. Can somebody push me in the right direction? I am working with openjdk12 and javafx12 on windows10. Thanks a lot, regards. Eef From tom.schindl at bestsolution.at Fri Jun 21 09:26:26 2019 From: tom.schindl at bestsolution.at (Tom Schindl) Date: Fri, 21 Jun 2019 11:26:26 +0200 Subject: How to make a large cursor in JavaFX 12 In-Reply-To: References: Message-ID: <3ac1b73b-d8a9-a95c-16b5-479fd3b0acf7@bestsolution.at> Hi, Well this is something you can configure in your OS-Settings and FX will just pick it up. The only other option is to set a custom image. Tom On 21.06.19 09:52, Eef Custers wrote: > Hi, > > I am working on an application for visual impaired users. I like to create > a large cursor, but I cannot find a way how to do that. Can somebody push > me in the right direction? > > I am working with openjdk12 and javafx12 on windows10. > Thanks a lot, > regards. > > Eef > -- Tom Schindl, CTO BestSolution.at EDV Systemhaus GmbH Eduard-Bodem-Gasse 5-7. A-6020 Innsbruck Reg. Nr. FN 222302s am Firmenbuchgericht Innsbruck From thiago.sayao at clamed.com.br Fri Jun 21 11:05:32 2019 From: thiago.sayao at clamed.com.br (Thiago Milczarek Sayao) Date: Fri, 21 Jun 2019 11:05:32 +0000 Subject: RFR JDK-8226537: gnome-shell crashes when closing a multi-level stage initOwner() Message-ID: Please, review the following: https://github.com/javafxports/openjdk-jfx/pull/506 https://bugs.openjdk.java.net/browse/JDK-8226537 From info at orenda-it.nl Mon Jun 24 11:33:49 2019 From: info at orenda-it.nl (info) Date: Mon, 24 Jun 2019 13:33:49 +0200 Subject: How to make a large cursor in JavaFX 12 In-Reply-To: <3ac1b73b-d8a9-a95c-16b5-479fd3b0acf7@bestsolution.at> References: <3ac1b73b-d8a9-a95c-16b5-479fd3b0acf7@bestsolution.at> Message-ID: Hi Tom, Thanks for your reply. The class ImageCursor does not responds to enlarging my Image, which I hoped was the solution. My windows 10 platform itself doesnot allow free sizing of the cursor. The maximum size offered (extreme large) is still too small. I need at least 2-3 centimeters on the screen. Best regards. Op vr 21 jun. 2019 om 11:38 schreef Tom Schindl : > Hi, > > Well this is something you can configure in your OS-Settings and FX will > just pick it up. The only other option is to set a custom image. > > Tom > > On 21.06.19 09:52, Eef Custers wrote: > > Hi, > > > > I am working on an application for visual impaired users. I like to > create > > a large cursor, but I cannot find a way how to do that. Can somebody push > > me in the right direction? > > > > I am working with openjdk12 and javafx12 on windows10. > > Thanks a lot, > > regards. > > > > Eef > > > > -- > Tom Schindl, CTO > BestSolution.at EDV Systemhaus GmbH > Eduard-Bodem-Gasse 5-7. A-6020 Innsbruck > Reg. Nr. FN 222302s am Firmenbuchgericht Innsbruck > From kevin.rushforth at oracle.com Mon Jun 24 22:36:49 2019 From: kevin.rushforth at oracle.com (Kevin Rushforth) Date: Mon, 24 Jun 2019 15:36:49 -0700 Subject: Proposed schedule for JavaFX 13 In-Reply-To: <7fd7add2-96de-a3d3-6542-056070f79422@oracle.com> References: <7fd7add2-96de-a3d3-6542-056070f79422@oracle.com> Message-ID: As a reminder, the RDP1 date for JavaFX 13 is on Monday, July 8, at 23:59 Pacific time. This is the deadline for features, although we will have a process for getting in some smaller enhancements after RDP1 with approval, as was done in previous releases. Given the timeline for approving new features, anything that requires a CSR (e.g., anything with new API) that isn't already under review, with an in-progress CSR, is likely too late for JavaFX 13 at this point. Starting on Tuesday, July 9, anything pushed to jfx-dev will be for JavaFX 14. -- Kevin On 3/30/2019 9:40 AM, Kevin Rushforth wrote: > Here is the proposed schedule for JavaFX 13. > > RDP1: Jul 8, 2019 (aka ?feature freeze?) > RDP2: Aug 5, 2019 > Freeze: Aug 26, 2019 > GA: September 10, 2019 > > We plan to fork a 13-dev stabilization repo at RDP1. The GA date is > one week ahead of JDK 13, matching what we did for 12. > > Please let Johan or me know if you have any questions. > > -- Kevin From nlisker at gmail.com Tue Jun 25 15:32:22 2019 From: nlisker at gmail.com (Nir Lisker) Date: Tue, 25 Jun 2019 18:32:22 +0300 Subject: Review Request: JDK-8226454: Point2D and Point3D should implement Interpolatable Message-ID: Hi, Please review the fix for: https://bugs.openjdk.java.net/browse/JDK-8226454 http://cr.openjdk.java.net/~nlisker/8226454/webrev.00/ Thanks, Nir From martijnverburg at gmail.com Tue Jun 25 16:43:51 2019 From: martijnverburg at gmail.com (Martijn Verburg) Date: Tue, 25 Jun 2019 17:43:51 +0100 Subject: Will there be update of openjfx-8u? In-Reply-To: <4c29a54c-ba17-743e-37e4-6b4a8844b513@oracle.com> References: <9D8EABB130A7294DAD4857FC861F5FBF4AE1220C@dggemm509-mbx.china.huawei.com> <51b6ad89-686b-1680-f56d-903d647a13a3@oracle.com> <6bb7bdbb-30d4-7a20-af84-dba701f0f986@bestsolution.at> <32eee318-737a-051d-2ca1-ce3be4b65faf@bestsolution.at> <4c29a54c-ba17-743e-37e4-6b4a8844b513@oracle.com> Message-ID: THanks, Kevin, and my apologies for not reading the archives Cheers, Martijn On Mon, 17 Jun 2019 at 18:32, Kevin Rushforth wrote: > As mentioned in this message [1], the last release of OpenJFX 8 was > 8u202 in January 2019, in conjunction with the last Oracle-led OpenJDK > release of the same. You can see the 8u202-ga tag [2] in the openjfx 8u > repo. > > -- Kevin > > [1] > > https://mail.openjdk.java.net/pipermail/openjfx-dev/2019-January/023039.html > [2] http://hg.openjdk.java.net/openjfx/8u/rt/tags > > On 6/17/2019 4:03 AM, Martijn Verburg wrote: > > Out of curiosity - what was the last release of OpenJFX 8? If I'm reading > > the repos correctly it should be 8u60? > > > > Cheers, > > Martijn > > > > > > On Tue, 11 Jun 2019 at 14:01, Tom Schindl > > wrote: > > > >> Hi Kevin, > >> > >> Well isn't that true as well for jfx-12 - or is this maintained? What > >> makes jfx-12 different from jfx-8? Or is the plan to remove jfx-12 once > >> jfx-13 is released, ...? > >> > >> Anyways, I accept this and I'll see how I can get that forked to my own > >> github account (once I have a need for it :-) > >> > >> Tom > >> > >> On 11.06.19 13:55, Kevin Rushforth wrote: > >>> If someone wants to create a new project and fork the openjfx/8u-dev/rt > >>> repo there, that would be fine...as long as everyone understand that it > >>> is a fork of an unmaintained code base. > >>> > >>> Since openjfx/8u is not being maintained, neither the > >>> javafxports/openjdk-jfx repo nor the new (for project Skara) openjdk > >>> project on GitHub would be suitable. > >>> > >>> -- Kevin > >>> > >>> > >>> On 6/11/2019 3:25 AM, Tom Schindl wrote: > >>>> Hi, > >>>> > >>>> What I asked some time ago is that the github fork also contains the > >>>> latest u8-state before it got frozen - similar to eg jfx-11, jfx-12 > (and > >>>> most likely soon jfx-13 branch). > >>>> > >>>> This would at least give us all a central place we can create our > forks > >>>> on (I understand nobody is willing to maintain merge back changes > >> there). > >>>> Tom > >>>> > >>>> On 10.06.19 22:29, Kevin Rushforth wrote: > >>>>> I recommend that you upgrade to JDK 12 + openjfx 12 if you want to > keep > >>>>> current, since openjfx-8u is not supported. > >>>>> > >>>>> If you must stay on JDK 8, Oracle is supporting JavaFX in JDK 8 > through > >>>>> March of 2022 [1], so you could check into that (note that this list > is > >>>>> not the place to discuss support, however). Otherwise, you are on > >>>>> your own. > >>>>> > >>>>> -- Kevin > >>>>> > >>>>> [1] > >> https://www.oracle.com/technetwork/java/java-se-support-roadmap.html > >>>>> > >>>>> On 6/9/2019 7:52 PM, guoge (A) wrote: > >>>>>> Thanks for your reply, Kevin > >>>>>> > >>>>>> I wonder to know if I'm still using JDK8 with JFX8 because JFX 11 > can > >>>>>> not match with JDK8 (as I know), > >>>>>> How can I deal with the vulnerabilities of JFX8? > >>>>>> > >>>>>> Thanks, > >>>>>> Guo Ge > >> -- > >> Tom Schindl, CTO > >> BestSolution.at EDV Systemhaus GmbH > >> Eduard-Bodem-Gasse 5-7. A-6020 Innsbruck > >> Reg. Nr. FN 222302s am Firmenbuchgericht Innsbruck > >> > > From ooo_saturn7 at mail.ru Tue Jun 25 18:50:37 2019 From: ooo_saturn7 at mail.ru (=?UTF-8?B?QWxleCBTdmlyaWRvdg==?=) Date: Tue, 25 Jun 2019 21:50:37 +0300 Subject: =?UTF-8?B?VGFibGVTZWxlY3Rpb25Nb2RlbCBpbiBqYXZhZG9jIGFuZCBpbiBzb3VyY2Vz?= Message-ID: <1561488637.474058462@f389.i.mail.ru> Hi all, I am reading JavaFX API and came across the following problem about TableSelectionModel In javadoc ( https://openjfx.io/javadoc/11/javafx.controls/javafx/scene/control/TableSelectionModel.html ): Module javafx.controls Package javafx.scene.control ... public abstract class TableSelectionModel extends MultipleSelectionModel In javafx-11+14-sources: package javafx.scene.control; public abstract class TableSelectionModel extends MultipleSelectionModelBase { as we see TableSelectionModel extends different classes in source and javadoc. Could anyone explain it? -- Best regards, Alex Sviridov From kevin.rushforth at oracle.com Tue Jun 25 19:17:03 2019 From: kevin.rushforth at oracle.com (Kevin Rushforth) Date: Tue, 25 Jun 2019 12:17:03 -0700 Subject: TableSelectionModel in javadoc and in sources In-Reply-To: <1561488637.474058462@f389.i.mail.ru> References: <1561488637.474058462@f389.i.mail.ru> Message-ID: MultipleSelectionModelBase, which extends MultipleSelectionModel, is not a public class (it is package-scope) so won't show up in the API docs. An application only sees TableSelectionModel as extending the public MultipleSelectionModel class. It is an implementation detail that it extends from the intermediate MultipleSelectionModelBase class. -- Kevin On 6/25/2019 11:50 AM, Alex Sviridov wrote: > Hi all, > > I am reading JavaFX API and came across the following problem about TableSelectionModel > > In javadoc ( https://openjfx.io/javadoc/11/javafx.controls/javafx/scene/control/TableSelectionModel.html ): > > Module javafx.controls > Package javafx.scene.control > ... > public abstract class TableSelectionModel extends MultipleSelectionModel > > In javafx-11+14-sources: > > package javafx.scene.control; > public abstract class TableSelectionModel extends MultipleSelectionModelBase { > > as we see TableSelectionModel extends different classes in source and javadoc. Could anyone explain it? > From ooo_saturn7 at mail.ru Tue Jun 25 20:21:41 2019 From: ooo_saturn7 at mail.ru (=?UTF-8?B?QWxleCBTdmlyaWRvdg==?=) Date: Tue, 25 Jun 2019 23:21:41 +0300 Subject: =?UTF-8?B?VGFibGVTZWxlY3Rpb25Nb2RlbCB3aGVuIG5ldyByb3dzIGFyZSBhZGRlZA==?= Message-ID: <1561494101.142291491@f132.i.mail.ru> Hi all, I am learning JavaFX API and can't understand how row indexes change when new rows are added to the table. Suppose, there are 3 rows in the table and row[2] is selected. When a new row is added at the beginning of the table then selected row index must change to 3. Could anyone explain how indexes are updated (the only methods I see are clearAndSelect but they are not good from viewpoint of performance)? By the way, could anyone say, why table was called TableView? I ask because there are TableColumn, TablePosition, TableCell but no Table. -- Best regards, Alex Sviridov From kevin.rushforth at oracle.com Tue Jun 25 21:44:19 2019 From: kevin.rushforth at oracle.com (Kevin Rushforth) Date: Tue, 25 Jun 2019 14:44:19 -0700 Subject: CFV: New OpenJFX Committer: Nir Lisker Message-ID: I hereby nominate Nir Lisker [1] to OpenJFX Committer. Nir is an OpenJFX community member, who has contributed 16 changesets [2][3] to OpenJFX. Votes are due by July 13, 2019. Only current OpenJFX Committers [4] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. For Lazy Consensus voting instructions, see [5]. Nomination to a project Committer is described in [6]. Thanks. -- Kevin [1] http://openjdk.java.net/census#nlisker [2] http://hg.openjdk.java.net/openjfx/jfx-dev/rt/log?revcount=20&rev=author%28nlisker%29 [3] http://hg.openjdk.java.net/openjfx/jfx-dev/rt/log?revcount=20&rev=nlisker%40gmail [4] http://openjdk.java.net/census#openjfx [5] http://openjdk.java.net/bylaws#lazy-consensus [6] http://openjdk.java.net/projects#project-committer From kevin.rushforth at oracle.com Tue Jun 25 21:45:41 2019 From: kevin.rushforth at oracle.com (Kevin Rushforth) Date: Tue, 25 Jun 2019 14:45:41 -0700 Subject: CFV: New OpenJFX Committer: Nir Lisker In-Reply-To: References: Message-ID: Vote: YES On 6/25/2019 2:44 PM, Kevin Rushforth wrote: > I hereby nominate Nir Lisker [1] to OpenJFX Committer. > > Nir is an OpenJFX community member, who has contributed 16 changesets > [2][3] to OpenJFX. > > Votes are due by July 13, 2019. > > Only current OpenJFX Committers [4] are eligible to vote on this > nomination. Votes must be cast in the open by replying to this mailing > list. > > For Lazy Consensus voting instructions, see [5]. Nomination to a > project Committer is described in [6]. > > Thanks. > > -- Kevin > > > [1] http://openjdk.java.net/census#nlisker > > [2] > http://hg.openjdk.java.net/openjfx/jfx-dev/rt/log?revcount=20&rev=author%28nlisker%29 > > [3] > http://hg.openjdk.java.net/openjfx/jfx-dev/rt/log?revcount=20&rev=nlisker%40gmail > > [4] http://openjdk.java.net/census#openjfx > > [5] http://openjdk.java.net/bylaws#lazy-consensus > > [6] http://openjdk.java.net/projects#project-committer > From ajit.ghaisas at oracle.com Wed Jun 26 04:21:02 2019 From: ajit.ghaisas at oracle.com (Ajit Ghaisas) Date: Wed, 26 Jun 2019 09:51:02 +0530 Subject: CFV: New OpenJFX Committer: Nir Lisker In-Reply-To: References: Message-ID: <9B47A811-230B-46FB-8B20-9BD3E94CA6D2@oracle.com> Vote : YES Regards, Ajit > On 26-Jun-2019, at 3:14 AM, Kevin Rushforth wrote: > > I hereby nominate Nir Lisker [1] to OpenJFX Committer. > > Nir is an OpenJFX community member, who has contributed 16 changesets [2][3] to OpenJFX. > > Votes are due by July 13, 2019. > > Only current OpenJFX Committers [4] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. > > For Lazy Consensus voting instructions, see [5]. Nomination to a project Committer is described in [6]. > > Thanks. > > -- Kevin > > > [1] http://openjdk.java.net/census#nlisker > > [2] http://hg.openjdk.java.net/openjfx/jfx-dev/rt/log?revcount=20&rev=author%28nlisker%29 > > [3] http://hg.openjdk.java.net/openjfx/jfx-dev/rt/log?revcount=20&rev=nlisker%40gmail > > [4] http://openjdk.java.net/census#openjfx > > [5] http://openjdk.java.net/bylaws#lazy-consensus > > [6] http://openjdk.java.net/projects#project-committer > From ambarish.rapte at oracle.com Wed Jun 26 04:40:53 2019 From: ambarish.rapte at oracle.com (Ambarish Rapte) Date: Tue, 25 Jun 2019 21:40:53 -0700 (PDT) Subject: CFV: New OpenJFX Committer: Nir Lisker In-Reply-To: References: Message-ID: Vote: YES -----Original Message----- From: Kevin Rushforth Sent: Wednesday, June 26, 2019 3:14 AM To: openjfx-dev at openjdk.java.net; Nir Lisker Subject: CFV: New OpenJFX Committer: Nir Lisker I hereby nominate Nir Lisker [1] to OpenJFX Committer. Nir is an OpenJFX community member, who has contributed 16 changesets [2][3] to OpenJFX. Votes are due by July 13, 2019. Only current OpenJFX Committers [4] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. For Lazy Consensus voting instructions, see [5]. Nomination to a project Committer is described in [6]. Thanks. -- Kevin [1] http://openjdk.java.net/census#nlisker [2] http://hg.openjdk.java.net/openjfx/jfx-dev/rt/log?revcount=20&rev=author%28nlisker%29 [3] http://hg.openjdk.java.net/openjfx/jfx-dev/rt/log?revcount=20&rev=nlisker%40gmail [4] http://openjdk.java.net/census#openjfx [5] http://openjdk.java.net/bylaws#lazy-consensus [6] http://openjdk.java.net/projects#project-committer From johan.vos at gluonhq.com Wed Jun 26 07:40:23 2019 From: johan.vos at gluonhq.com (Johan Vos) Date: Wed, 26 Jun 2019 09:40:23 +0200 Subject: CFV: New OpenJFX Committer: Nir Lisker In-Reply-To: References: Message-ID: Vote: YES On Tue, Jun 25, 2019 at 11:55 PM Kevin Rushforth wrote: > I hereby nominate Nir Lisker [1] to OpenJFX Committer. > > Nir is an OpenJFX community member, who has contributed 16 changesets > [2][3] to OpenJFX. > > Votes are due by July 13, 2019. > > Only current OpenJFX Committers [4] are eligible to vote on this > nomination. Votes must be cast in the open by replying to this mailing > list. > > For Lazy Consensus voting instructions, see [5]. Nomination to a project > Committer is described in [6]. > > Thanks. > > -- Kevin > > > [1] http://openjdk.java.net/census#nlisker > > [2] > > http://hg.openjdk.java.net/openjfx/jfx-dev/rt/log?revcount=20&rev=author%28nlisker%29 > > [3] > > http://hg.openjdk.java.net/openjfx/jfx-dev/rt/log?revcount=20&rev=nlisker%40gmail > > [4] http://openjdk.java.net/census#openjfx > > [5] http://openjdk.java.net/bylaws#lazy-consensus > > [6] http://openjdk.java.net/projects#project-committer > > From arunprasad.rajkumar at oracle.com Wed Jun 26 08:48:52 2019 From: arunprasad.rajkumar at oracle.com (Arunprasad Rajkumar) Date: Wed, 26 Jun 2019 14:18:52 +0530 Subject: CFV: New OpenJFX Committer: Nir Lisker In-Reply-To: References: Message-ID: <0A7EB06A-085B-4954-BCB8-0AD3121B4499@oracle.com> Vote: YES > On 26-Jun-2019, at 3:14 AM, Kevin Rushforth wrote: > > I hereby nominate Nir Lisker [1] to OpenJFX Committer. > > Nir is an OpenJFX community member, who has contributed 16 changesets [2][3] to OpenJFX. > > Votes are due by July 13, 2019. > > Only current OpenJFX Committers [4] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. > > For Lazy Consensus voting instructions, see [5]. Nomination to a project Committer is described in [6]. > > Thanks. > > -- Kevin > > > [1] http://openjdk.java.net/census#nlisker > > [2] http://hg.openjdk.java.net/openjfx/jfx-dev/rt/log?revcount=20&rev=author%28nlisker%29 > > [3] http://hg.openjdk.java.net/openjfx/jfx-dev/rt/log?revcount=20&rev=nlisker%40gmail > > [4] http://openjdk.java.net/census#openjfx > > [5] http://openjdk.java.net/bylaws#lazy-consensus > > [6] http://openjdk.java.net/projects#project-committer > From andrew at nmedia.net Wed Jun 26 17:26:44 2019 From: andrew at nmedia.net (Andrew Munn) Date: Wed, 26 Jun 2019 10:26:44 -0700 (PDT) Subject: getting height of TableView? Message-ID: I have a question similar to this one: https://stackoverflow.com/questions/27945817/javafx-adapt-tableview-height-to-number-of-rows I have a table that rows are added & removed from. I want the SplitPane holding the table to resize itself as needed. ... ... When I change my table font size or add/remove rows I currently call this: public void updateListTableHeight(){ double h = (tableData.size()+1) * 2.1 * fontSize; Platform.runLater(() -> { listScrollPane.setMaxHeight(h); listScrollPane.setMinHeight(h); }); } This is not an ideal solution. There must be a better way to get the correct table size (no empty space). Best would be to bind the ScrollPane height to the TableView height. Thanks. From arunprasad.rajkumar at oracle.com Thu Jun 27 15:15:36 2019 From: arunprasad.rajkumar at oracle.com (Arunprasad Rajkumar) Date: Thu, 27 Jun 2019 20:45:36 +0530 Subject: [RFR] [openjfx13] 8219362: Update to 608.1 version of WebKit Message-ID: <64B3DE44-FAC1-47E9-97AD-9F82B856C76A@oracle.com> Hi Kevin, Johan, Please review the following patch which merges GTK WebKit 2.24(608.1) into jfx-dev: https://cr.openjdk.java.net/~arajkumar/8219362/webrev Above link has a webrev and a compressed changeset file, 1. rt-non-native-webkit ? Contains changes other than "modules/javafx.web/src/main/native", it will be useful _only_ for review, don?t apply the patch from it. 2. rt.changeset.gz ? Actual changeset file in compressed format which contains all the changes from ?rt? directory(including WebKit native changes), uncompress before using it(gunzip rt.changeset.gz) and do the following steps., $ hg clone https://hg.openjdk.java.net/openjfx/jfx-dev/rt $ cd rt $ hg import --no-commit rt.changeset #(from rt.changset.gz) (or) $ wget http://cr.openjdk.java.net/~arajkumar/8219362/webrev/rt.changeset.gz -O - | gunzip | hg import - --no-commit Thanks, Arun From kevin.rushforth at oracle.com Thu Jun 27 16:07:00 2019 From: kevin.rushforth at oracle.com (Kevin Rushforth) Date: Thu, 27 Jun 2019 09:07:00 -0700 Subject: [RFR] [openjfx13] 8219362: Update to 608.1 version of WebKit In-Reply-To: <64B3DE44-FAC1-47E9-97AD-9F82B856C76A@oracle.com> References: <64B3DE44-FAC1-47E9-97AD-9F82B856C76A@oracle.com> Message-ID: I did a sanity test on all three platforms. All looks good. +1 -- Kevin On 6/27/2019 8:15 AM, Arunprasad Rajkumar wrote: > Hi Kevin, Johan, > > Please review the following patch which merges GTK WebKit 2.24(608.1) into jfx-dev: > > https://cr.openjdk.java.net/~arajkumar/8219362/webrev > > Above link has a webrev and a compressed changeset file, > > 1. rt-non-native-webkit ? Contains changes other than "modules/javafx.web/src/main/native", it will be useful _only_ for review, don?t apply the patch from it. > > 2. rt.changeset.gz ? Actual changeset file in compressed format which contains all the changes from ?rt? directory(including WebKit native changes), uncompress before using it(gunzip rt.changeset.gz) and do the following steps., > > $ hg clone https://hg.openjdk.java.net/openjfx/jfx-dev/rt > $ cd rt > > $ hg import --no-commit rt.changeset #(from rt.changset.gz) > (or) > $ wget http://cr.openjdk.java.net/~arajkumar/8219362/webrev/rt.changeset.gz -O - | gunzip | hg import - --no-commit > > Thanks, > Arun From pruteanu at gmail.com Thu Jun 27 19:51:01 2019 From: pruteanu at gmail.com (dprutean .) Date: Thu, 27 Jun 2019 21:51:01 +0200 Subject: Canvas Memory Usage Message-ID: Hi, I use a combination of TabPane and Canvas to draw objects. Canvas memory usage is high, after opening few tabs on a 4k monitor I receive error messages. Is any way to reduce Canvas memory usage ? Maybe releasing memory on canvas.setVisible(false)? I can call it when a tab becomes inactive. Cheers, Dragos From kevin.rushforth at oracle.com Fri Jun 28 16:22:34 2019 From: kevin.rushforth at oracle.com (Kevin Rushforth) Date: Fri, 28 Jun 2019 09:22:34 -0700 Subject: RFR: JDK-8226951: Backout commit for JDK-8226537 to fix the attribution Message-ID: Please review the following backout patch to fix the attribution (I did not fix the Author field and pushed it as if I had authored it). https://bugs.openjdk.java.net/browse/JDK-8226951 The backout patch, as generated by 'hg backout', is attached to the JBS issue. Thanks. -- Kevin From andrew at nmedia.net Sun Jun 30 17:10:43 2019 From: andrew at nmedia.net (Andrew Munn) Date: Sun, 30 Jun 2019 10:10:43 -0700 (PDT) Subject: O(1) access to rows in TableView by Key lookup? Message-ID: I have a question similar to this one: https://stackoverflow.com/questions/16941980/populate-tableview-with-observablemap-javafx I have a TableView in which rows can be added/updated/deleted. I want to be able to delete rows in a TableView without having to iteratively search the collection of rows. There should be a table backed by a map for this. Otherwise I have to keep my own map synchronized with the TableView's data structure.