Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Fatal Error : Adreno-GSL

sometimes and randomly when i run my app with Eclipse i got this error on launching , the app shuts down unexpectedly with this Error in logcat:

   Tag : Adreno-GSL

   Text : <ioctl_kgsl_sharedmem_alloc:1494>:ioctl_kgsl_sharedmem_alloc: FATAL ERROR : (null)

i think it's a memory issue but i don't have any idea about that ,does anybody know why this error occurs and how can i solve it?

like image 898
Arash GM Avatar asked Feb 14 '23 02:02

Arash GM


2 Answers

You can use:

adb shell dumpsys meminfo your.package.name.here

to check how much memory you are using. Notably, the GL line in your case. Strange that it only happens when you run from Eclipse.

like image 95
Jim Avatar answered Feb 26 '23 23:02

Jim


I think it is a memory problem. Check your device memory, and your application. It may is using a lot of memory and the android system has to force it to close.

like image 35
Maqueda Avatar answered Feb 26 '23 23:02

Maqueda