theKernel 10.0
Loading...
Searching...
No Matches
MkErrorC_System_PY_API

MkErrorC - various functions to raise a 'System' messagen on MkErrorSMore...

+ Collaboration diagram for MkErrorC_System_PY_API:

Functions

static OT_ProcRet pymkkernel_MkErrorC_DEFAULT (OtClass_ARGS)
  Python: [static] MkErrorC MkErrorC.DEFAULT() C-API
default-system-error - default-error
 
static OT_ProcRet pymkkernel_MkErrorC_FORMAT (OtClass_ARGS)
  Python: [static] MkErrorC MkErrorC.FORMAT(?fmtobj:MkObjectC=None?) C-API
system-error-format - format and return the default-error
 
static OT_ProcRet pymkkernel_MkErrorC_IGNORE (OtClass_ARGS)
  Python: [static] MkErrorC MkErrorC.IGNORE() C-API
ignore-system-error - ignore the next error …
 
static OT_ProcRet pymkkernel_MkErrorC_PRINT (OtClass_ARGS)
  Python: [static] MkErrorC MkErrorC.PRINT() C-API
ignore-system-error - print the next error into MkLogFileC
 

Detailed Description

MkErrorC - various functions to raise a 'System' messagen on MkErrorS

Function Documentation

◆ pymkkernel_MkErrorC_DEFAULT()

static OT_ProcRet pymkkernel_MkErrorC_DEFAULT ( OtClass_ARGS )
static

Python: [static] MkErrorC MkErrorC.DEFAULT() C-API
default-system-error - default-error

Definition at line 814 of file MkErrorC_py.c.

814 {
818 MK_ERR retVal = MkErrorDEFAULT ();
819 OT_retObj_SET_ERR(retVal);
820 goto end;
821 error:
823 end:
825}
#define OT_SETUP_NOARG(d)
#define OT_retObj_SET_Error
#define OT_retObj_RETURN
#define OT_retObj_SET_ERR(nat)
#define OT_CHECK_NOARGS
#define DEFAULT_doc
#define OT_SETUP_hdl_static
Definition MkErrorC_py.c:28
#define MkErrorDEFAULT()
The data-type to store and handle the error-condition …

◆ pymkkernel_MkErrorC_FORMAT()

static OT_ProcRet pymkkernel_MkErrorC_FORMAT ( OtClass_ARGS )
static

Python: [static] MkErrorC MkErrorC.FORMAT(?fmtobj:MkObjectC=None?) C-API
system-error-format - format and return the default-error

Definition at line 828 of file MkErrorC_py.c.

828 {
831 MK_OBJN fmtobj = NULL;
834 MK_ERR retVal = MkErrorFORMAT (fmtobj);
835 OT_retObj_SET_ERR(retVal);
836 goto end;
837 error:
839 end:
841}
#define OT_SETUP_VARARGS(min, max, d)
#define OT_CHECK_OPTIONAL(val)
#define FORMAT_doc
MK_ERR MkErrorFORMAT(MK_OBJN fmtobj)
system-error-format - format and return the default-error …
#define MK_NULL_YES
flag, allow NULL
#define OT_CHECK_OBJN(val, nullB)
object header …

◆ pymkkernel_MkErrorC_IGNORE()

static OT_ProcRet pymkkernel_MkErrorC_IGNORE ( OtClass_ARGS )
static

Python: [static] MkErrorC MkErrorC.IGNORE() C-API
ignore-system-error - ignore the next error …

Definition at line 844 of file MkErrorC_py.c.

844 {
848 MK_ERR retVal = MkErrorIGNORE ();
849 OT_retObj_SET_ERR(retVal);
850 goto end;
851 error:
853 end:
855}
#define IGNORE_doc
#define MkErrorIGNORE()

◆ pymkkernel_MkErrorC_PRINT()

static OT_ProcRet pymkkernel_MkErrorC_PRINT ( OtClass_ARGS )
static

Python: [static] MkErrorC MkErrorC.PRINT() C-API
ignore-system-error - print the next error into MkLogFileC

Definition at line 858 of file MkErrorC_py.c.

858 {
862 MK_ERR retVal = MkErrorPRINT ();
863 OT_retObj_SET_ERR(retVal);
864 goto end;
865 error:
867 end:
869}
#define PRINT_doc
#define MkErrorPRINT()