Windows error 0x0000025A, 602

Detailed Error Information

ALLOCATE_BUCKET[1]

MessageThe bucket array must be grown. Retry transaction after doing so.
Declared inwinerror.h

This appears to be a raw Win32 error. More information may be available in error 0x8007025A.

HRESULT analysis[2]

This is probably not the correct interpretation of this error. The Win32 error above is more likely to indicate the actual problem.
FlagsSeveritySuccess

This code indicates success, rather than an error. This may not be the correct interpretation of this code, or possibly the program is handling errors incorrectly.

Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[2][1]
DescriptionThe default facility code.[2][1]
Error Code602 (0x025a)

Questions

4votes
4answers

SurfaceView onMeasure() did not set the measured dimension by calling setMeasuredDimension()

I have a SurfaceView. I just draw on it manually from an other Thread. It runs nicely. But after 10-20 minutes of running in average I get this exception: 01-14 08:51:25.000 3740-3740/com.myPackage E/AndroidRuntime﹕ FATAL EXCEPTION: main java.lang.IllegalStateException: onMeasure() did not set the measured dimension by calling setMeasuredDimension() at android.view.View.measure(View.java:15200) at [...] read more
android
surfaceview
onmeasure
3votes
0answers

ANR with 3 threads - using locks

Main Thread: ("main" prio=5 tid=1) Makes an ArrayList in onCreate() Makes an object for locking. (lock) Starts a Thread: ("Thread-6024" prio=5 tid=29) myThread= new MyThread(); myThread.start(); MyThread: public class PainterThread extends Thread{ @Override public void run() { while(true) { synchronized(lock){doMyStuff()} Thread.yield(); } } Also start an other thread with Timer [...] read more
java
android
multithreading

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0