Clone
ixen <ixen@copyhandler.com>
committed
on 12 Jan 17
Additional unit tests (CH-326)
ch-1.40 + 2 more
src/libchcore/ErrorCodes.h (+1 -0)
34 34                 eErr_InvalidPointer = 7,
35 35
36 36                 // shared memory (500+)
37 37                 eErr_CannotOpenSharedMemory = 500,
38 38                 eErr_SharedMemoryNotOpen = 501,
39 39                 eErr_SharedMemoryInvalidFormat = 502,
40 40                 eErr_SharedMemoryAlreadyExists = 503,
41 41
42 42                 // threading (1000+)
43 43                 eErr_MutexTimedOut = 1000,
44 44                 eErr_CannotCreateEvent = 1001,
45 45                 eErr_ThreadAlreadyStarted = 1002,
46 46                 eErr_CannotResetEvent = 1003,
47 47                 eErr_CannotCreateThread = 1004,
48 48                 eErr_CannotChangeThreadPriority = 1005,
49 49                 eErr_CannotResumeThread = 1006,
50 50                 eErr_WaitingFailed = 1007,
51 51                 eErr_CannotSuspendThread = 1008,
52 52                 eErr_CannotSetEvent = 1009,
53 53                 eErr_CannotCreateMutex = 1010,
  54                 eErr_MutexAlreadyLocked = 1011,
54 55
55 56                 // string errors (1500+)
56 57
57 58                 // Task definition errors (2000+)
58 59                 eErr_UnsupportedVersion = 2000,
59 60                 eErr_MissingXmlData = 2001,
60 61                 eErr_TaskAlreadyExists = 2002,
61 62
62 63                 // Serialization errors (2500+)
63 64                 eErr_CannotReadArchive = 2500,
64 65                 eErr_SerializeLoadError = 2501,
65 66                 eErr_SerializeStoreError = 2502,
66 67                 eErr_ContainerObjectMismatch = 2503,
67 68                 eErr_NodeDoesNotExist = 2504,
68 69                 eErr_UnsupportedMultipleSubnodesLevels = 2505,
69 70                 eErr_CannotWriteArchive = 2506,
70 71                 eErr_InvalidSerializationData = 2507,
71 72                 eErr_CannotSetDatabaseOptions = 2508,
72 73                 eErr_InvalidSerializer = 2509,
73 74