only update affected area of bitmap
[AROS.git] / compiler / purify / src / error.def
blob2dd14b303af85ea8f3c688a04a655982093a3a84
1 _ERROR_DEF(UndefRead, "UMR: Read from uninitialized memory")
2 _ERROR_DEF(IllWrite, "IWR: Write to illegal memory")
3 _ERROR_DEF(IllRead, "IRD: Read from illegal memory")
4 _ERROR_DEF(FreeRead, "RFM: Read from free memory")
5 _ERROR_DEF(FreeWrite, "WFM: Write to free memory")
6 _ERROR_DEF(BorderAccess, "BAC: Access accross block boundary")
7 _ERROR_DEF(NotOwnMemory, "IAC: Access to memory not owned by this process")
8 _ERROR_DEF(CodeWrite, "WTC: Write to code")
9 _ERROR_DEF(FreeStackWrite, "WTS: Illegal write to stack")
10 _ERROR_DEF(FreeStackRead, "RFS: Illegal read from stack")
11 _ERROR_DEF(IllPointer, "IPR: Illegal pointer passed to C function")
12 _ERROR_DEF(MemLeak, "MLK: Memory leak")