Contenido principal

La traducción de esta página aún no se ha actualizado a la versión más reciente. Haga clic aquí para ver la última versión en inglés.

Directrices y reglas de MISRA C:2023

Lista y descripción de las directrices y reglas de MISRA™ C:2023 que son compatibles con Polyspace®

Polyspace puede comprobar el código conforme a las reglas de codificación y directrices de MISRA C™:2023. El estándar MISRA C:2023 consolida las siguientes directrices:

  • Las reglas y directrices de MISRA C:2012.

  • Las aclaraciones añadidas en el documento de correcciones técnicas 1 (TC1) y el documento de correcciones técnicas 2 (TC2).

  • Nuevas reglas y modificaciones añadidas en la enmienda 1 (AMD1), enmienda 2 (AMD2), enmienda 3 (AMD3) y enmienda 4 (AMD4).

Cada directriz se clasifica en una de estas categorías: obligatoria, requerida o recomendada. Al configurar la comprobación de reglas, puede seleccionar subconjuntos de estas categorías que se deben comprobar. Utilice la opción de análisis Comprobar MISRA C:2023 (-misra-c-2023) para activar subconjuntos de reglas.

Para el código generado automáticamente, algunas reglas pueden cambiar de categoría y añadirse una categoría adicional: legibilidad. La opción Utilizar requisitos de código generados (-misra-c-2023-agc-mode) activa la categorización para código generado automáticamente.

Existen subconjuntos adicionales de directrices de MISRA C:2023 definidos por Polyspace, denominados objetivos de calidad del software (SQO), que pueden tener un impacto directo o indirecto en la precisión de los resultados. Al configurar la comprobación del código, puede seleccionar estos subconjuntos. Consulte Software Quality Objective Subsets for MISRA Coding Standards

Si utiliza una versión específica del lenguaje C, como C11 o C17/C18, especifique la versión de C para obtener una comprobación más precisa de la infracción de MISRA C:2023. Consulte Versión estándar de C (-c-version).

Resultados de Polyspace

expandir todo

MISRA C:2023 Dir 1.1Any implementation-defined behavior on which the output of the program depends shall be documented and understood (Desde R2024a)
MISRA C:2023 Dir 2.1All source files shall compile without any compilation errors (Desde R2024a)
MISRA C:2023 Dir 4.1Run-time failures shall be minimized (Desde R2024a)
MISRA C:2023 Dir 4.3Assembly language shall be encapsulated and isolated (Desde R2024a)
MISRA C:2023 Dir 4.4Sections of code should not be "commented out" (Desde R2024a)
MISRA C:2023 Dir 4.5Identifiers in the same name space with overlapping visibility should be typographically unambiguous (Desde R2024a)
MISRA C:2023 Dir 4.6 typedefs that indicate size and signedness should be used in place of the basic numerical types (Desde R2024a)
MISRA C:2023 Dir 4.7If a function returns error information, then that error information shall be tested (Desde R2024a)
MISRA C:2023 Dir 4.8If a pointer to a structure or union is never dereferenced within a translation unit, then the implementation of the object should be hidden (Desde R2024a)
MISRA C:2023 Dir 4.9A function should be used in preference to a function-like macro where they are interchangeable (Desde R2024a)
MISRA C:2023 Dir 4.10Precautions shall be taken in order to prevent the contents of a header file being included more than once (Desde R2024a)
MISRA C:2023 Dir 4.11The validity of values passed to library functions shall be checked (Desde R2024a)
MISRA C:2023 Dir 4.12Dynamic memory allocation shall not be used (Desde R2024a)
MISRA C:2023 Dir 4.13Functions which are designed to provide operations on a resource should be called in an appropriate sequence (Desde R2024a)
MISRA C:2023 Dir 4.14The validity of values received from external sources shall be checked (Desde R2024a)
MISRA C:2023 Dir 4.15Evaluation of floating-point expressions shall not lead to the undetected generation of infinities and NaNs (Desde R2024a)
MISRA C:2023 Dir 5.1There shall be no data races between threads (Desde R2024b)
MISRA C:2023 Dir 5.2There shall be no deadlocks between threads (Desde R2024b)
MISRA C:2023 Rule 1.1The program shall contain no violations of the standard C syntax and constraints, and shall not exceed the implementation's translation limits (Desde R2024a)
MISRA C:2023 Rule 1.2Language extensions should not be used (Desde R2024a)
MISRA C:2023 Rule 1.3There shall be no occurrence of undefined or critical unspecified behaviour (Desde R2024a)
MISRA C:2023 Rule 1.4Emergent language features shall not be used (Desde R2024a)
MISRA C:2023 Rule 1.5Obsolescent language features shall not be used (Desde R2024a)
MISRA C:2023 Rule 2.1A project shall not contain unreachable code (Desde R2024a)
MISRA C:2023 Rule 2.2A project shall not contain dead code (Desde R2024a)
MISRA C:2023 Rule 2.3A project should not contain unused type declarations (Desde R2024a)
MISRA C:2023 Rule 2.4A project should not contain unused tag declarations (Desde R2024a)
MISRA C:2023 Rule 2.5A project should not contain unused macro definitions (Desde R2024a)
MISRA C:2023 Rule 2.6A function should not contain unused label declarations (Desde R2024a)
MISRA C:2023 Rule 2.7A function should not contain unused parameters (Desde R2024a)
MISRA C:2023 Rule 2.8A project should not contain unused object definitions (Desde R2024b)
MISRA C:2023 Rule 3.1The character sequences /* and // shall not be used within a comment (Desde R2024a)
MISRA C:2023 Rule 3.2Line-splicing shall not be used in // comments (Desde R2024a)
MISRA C:2023 Rule 4.1Octal and hexadecimal escape sequences shall be terminated (Desde R2024a)
MISRA C:2023 Rule 4.2Trigraphs should not be used (Desde R2024a)
MISRA C:2023 Rule 5.1External identifiers shall be distinct (Desde R2024a)
MISRA C:2023 Rule 5.2Identifiers declared in the same scope and name space shall be distinct (Desde R2024a)
MISRA C:2023 Rule 5.3An identifier declared in an inner scope shall not hide an identifier declared in an outer scope (Desde R2024a)
MISRA C:2023 Rule 5.4Macro identifiers shall be distinct (Desde R2024a)
MISRA C:2023 Rule 5.5Identifiers shall be distinct from macro names (Desde R2024a)
MISRA C:2023 Rule 5.6A typedef name shall be a unique identifier (Desde R2024a)
MISRA C:2023 Rule 5.7A tag name shall be a unique identifier (Desde R2024a)
MISRA C:2023 Rule 5.8Identifiers that define objects or functions with external linkage shall be unique (Desde R2024a)
MISRA C:2023 Rule 5.9Identifiers that define objects or functions with internal linkage should be unique (Desde R2024a)
MISRA C:2023 Rule 6.1Bit-fields shall only be declared with an appropriate type (Desde R2024a)
MISRA C:2023 Rule 6.2Single-bit named bit-fields shall not be of a signed type (Desde R2024a)
MISRA C:2023 Rule 6.3A bit field shall not be declared as a member of a union (Desde R2024a)
MISRA C:2023 Rule 7.1Octal constants shall not be used (Desde R2024a)
MISRA C:2023 Rule 7.2A “u” or “U” suffix shall be applied to all integer constants that are represented in an unsigned type (Desde R2024a)
MISRA C:2023 Rule 7.3The lowercase character “l” shall not be used in a literal suffix (Desde R2024a)
MISRA C:2023 Rule 7.4A string literal shall not be assigned to an object unless the object’s type is “pointer to const-qualified char” (Desde R2024a)
MISRA C:2023 Rule 7.5The argument of an integer constant macro shall have an appropriate form (Desde R2024a)
MISRA C:2023 Rule 7.6The small integer variants of the minimum-width integer constant macros shall not be used (Desde R2025a)
MISRA C:2023 Rule 8.1Types shall be explicitly specified (Desde R2024a)
MISRA C:2023 Rule 8.2Function types shall be in prototype form with named parameters (Desde R2024a)
MISRA C:2023 Rule 8.3All declarations of an object or function shall use the same names and type qualifiers (Desde R2024a)
MISRA C:2023 Rule 8.4A compatible declaration shall be visible when an object or function with external linkage is defined (Desde R2024a)
MISRA C:2023 Rule 8.5An external object or function shall be declared once in one and only one file (Desde R2024a)
MISRA C:2023 Rule 8.6An identifier with external linkage shall have exactly one external definition (Desde R2024a)
MISRA C:2023 Rule 8.7Functions and objects should not be defined with external linkage if they are referenced in only one translation unit (Desde R2024a)
MISRA C:2023 Rule 8.8The static storage class specifier shall be used in all declarations of objects and functions that have internal linkage (Desde R2024a)
MISRA C:2023 Rule 8.9An object should be declared at block scope if its identifier only appears in a single function (Desde R2024a)
MISRA C:2023 Rule 8.10An inline function shall be declared with the static storage class (Desde R2024a)
MISRA C:2023 Rule 8.11When an array with external linkage is declared, its size should be explicitly specified (Desde R2024a)
MISRA C:2023 Rule 8.12Within an enumerator list, the value of an implicitly-specified enumeration constant shall be unique (Desde R2024a)
MISRA C:2023 Rule 8.13A pointer should point to a const-qualified type whenever possible (Desde R2024a)
MISRA C:2023 Rule 8.14The restrict type qualifier shall not be used (Desde R2024a)
MISRA C:2023 Rule 8.15The argument of an integer constant macro shall have an appropriate form (Desde R2024a)
MISRA C:2023 Rule 8.16The alignment specification of zero should not appear in an object declaration (Desde R2024a)
MISRA C:2023 Rule 8.17At most one explicit alignment specifier should appear in an object declaration (Desde R2024a)
MISRA C:2023 Rule 9.1The value of an object with automatic storage duration shall not be read before it has been set (Desde R2024a)
MISRA C:2023 Rule 9.2The initializer for an aggregate or union shall be enclosed in braces (Desde R2024a)
MISRA C:2023 Rule 9.3Arrays shall not be partially initialized (Desde R2024a)
MISRA C:2023 Rule 9.4An element of an object shall not be initialized more than once (Desde R2024a)
MISRA C:2023 Rule 9.5Where designated initializers are used to initialize an array object the size of the array shall be specified explicitly (Desde R2024a)
MISRA C:2023 Rule 9.6An initializer using chained designators shall not contain initializers without designators (Desde R2025a)
MISRA C:2023 Rule 10.1Operands shall not be of an inappropriate essential type (Desde R2024a)
MISRA C:2023 Rule 10.2Expressions of essentially character type shall not be used inappropriately in addition and subtraction operations (Desde R2024a)
MISRA C:2023 Rule 10.3The value of an expression shall not be assigned to an object with a narrower essential type or of a different essential type category (Desde R2024a)
MISRA C:2023 Rule 10.4Both operands of an operator in which the usual arithmetic conversions are performed shall have the same essential type category (Desde R2024a)
MISRA C:2023 Rule 10.5The value of an expression should not be cast to an inappropriate essential type (Desde R2024a)
MISRA C:2023 Rule 10.6The value of a composite expression shall not be assigned to an object with wider essential type (Desde R2024a)
MISRA C:2023 Rule 10.7If a composite expression is used as one operand of an operator in which the usual arithmetic conversions are performed then the other operand shall not have wider essential type (Desde R2024a)
MISRA C:2023 Rule 10.8The value of a composite expression shall not be cast to a different essential type category or a wider essential type (Desde R2024a)
MISRA C:2023 Rule 11.1Conversions shall not be performed between a pointer to a function and any other type (Desde R2024a)
MISRA C:2023 Rule 11.2Conversions shall not be performed between a pointer to an incomplete type and any other type (Desde R2024a)
MISRA C:2023 Rule 11.3A conversion shall not be performed between a pointer to object type and a pointer to a different object type (Desde R2024a)
MISRA C:2023 Rule 11.4A conversion should not be performed between a pointer to object and an integer type (Desde R2024a)
MISRA C:2023 Rule 11.5A conversion should not be performed from pointer to void into pointer to object (Desde R2024a)
MISRA C:2023 Rule 11.6A cast shall not be performed between pointer to void and an arithmetic type (Desde R2024a)
MISRA C:2023 Rule 11.7A cast shall not be performed between pointer to object and a non-integer arithmetic type (Desde R2024a)
MISRA C:2023 Rule 11.8A conversion shall not remove any const, volatile, or _Atomic qualification from the type pointed to by a pointer (Desde R2024a)
MISRA C:2023 Rule 11.9The macro NULL shall be the only permitted form of integer null pointer constant (Desde R2024a)
MISRA C:2023 Rule 11.10The _Atomic qualifier shall not be applied to the incomplete type void (Desde R2024b)
MISRA C:2023 Rule 12.1The precedence of operators within expressions should be made explicit (Desde R2024a)
MISRA C:2023 Rule 12.2The right hand operand of a shift operator shall lie in the range zero to one less than the width in bits of the essential type of the left hand operand (Desde R2024a)
MISRA C:2023 Rule 12.3The comma operator should not be used (Desde R2024a)
MISRA C:2023 Rule 12.4Evaluation of constant expressions should not lead to unsigned integer wrap-around (Desde R2024a)
MISRA C:2023 Rule 12.5The sizeof operator shall not have an operand which is a function parameter declared as “array of type” (Desde R2024a)
MISRA C:2023 Rule 12.6Structure and union members of atomic objects shall not be directly accessed (Desde R2025a)
MISRA C:2023 Rule 13.1Initializer lists shall not contain persistent side effects (Desde R2024a)
MISRA C:2023 Rule 13.2The value of an expression and its persistent side effects shall be the same under all permitted evaluation orders and shall be independent from thread interleaving (Desde R2024a)
MISRA C:2023 Rule 13.3A full expression containing an increment (++) or decrement (--) operator should have no other potential side effects other than that caused by the increment or decrement operator (Desde R2024a)
MISRA C:2023 Rule 13.4The result of an assignment operator should not be used (Desde R2024a)
MISRA C:2023 Rule 13.5The right hand operand of a logical && or || operator shall not contain persistent side effects (Desde R2024a)
MISRA C:2023 Rule 13.6The operand of the sizeof operator shall not contain any expression which has potential side effects (Desde R2024a)
MISRA C:2023 Rule 14.1A loop counter shall not have essentially floating type (Desde R2024a)
MISRA C:2023 Rule 14.2A for loop shall be well-formed (Desde R2024a)
MISRA C:2023 Rule 14.3Controlling expressions shall not be invariant (Desde R2024a)
MISRA C:2023 Rule 14.4The controlling expression of an if statement and the controlling expression of an iteration-statement shall have essentially Boolean type (Desde R2024a)
MISRA C:2023 Rule 15.1The goto statement should not be used (Desde R2024a)
MISRA C:2023 Rule 15.2The goto statement shall jump to a label declared later in the same function (Desde R2024a)
MISRA C:2023 Rule 15.3Any label referenced by a goto statement shall be declared in the same block, or in any block enclosing the goto statement (Desde R2024a)
MISRA C:2023 Rule 15.4There should be no more than one break or goto statement used to terminate any iteration statement (Desde R2024a)
MISRA C:2023 Rule 15.5A function should have a single point of exit at the end (Desde R2024a)
MISRA C:2023 Rule 15.6The body of an iteration-statement or a selection-statement shall be a compound statement (Desde R2024a)
MISRA C:2023 Rule 15.7All if … else if constructs shall be terminated with an else statement (Desde R2024a)
MISRA C:2023 Rule 16.1All switch statements shall be well-formed (Desde R2024a)
MISRA C:2023 Rule 16.2A switch label shall only be used when the most closely-enclosing compound statement is the body of a switch statement (Desde R2024a)
MISRA C:2023 Rule 16.3An unconditional break statement shall terminate every switch-clause (Desde R2024a)
MISRA C:2023 Rule 16.4Every switch statement shall have a default label (Desde R2024a)
MISRA C:2023 Rule 16.5A default label shall appear as either the first or the last switch label of a switch statement (Desde R2024a)
MISRA C:2023 Rule 16.6Every switch statement shall have at least two switch-clauses (Desde R2024a)
MISRA C:2023 Rule 16.7A switch-expression shall not have essentially Boolean type (Desde R2024a)
MISRA C:2023 Rule 17.1The standard header file <stdarg.h> shall not be used (Desde R2024a)
MISRA C:2023 Rule 17.2Functions shall not call themselves, either directly or indirectly (Desde R2024a)
MISRA C:2023 Rule 17.3A function shall not be declared implicitly (Desde R2024a)
MISRA C:2023 Rule 17.4All exit paths from a function with non-void return type shall have an explicit return statement with an expression (Desde R2024a)
MISRA C:2023 Rule 17.5The function argument corresponding to a parameter declared to have an array type shall have an appropriate number of elements (Desde R2024a)
MISRA C:2023 Rule 17.6The declaration of an array parameter shall not contain the static keyword between the [ ] (Desde R2024a)
MISRA C:2023 Rule 17.7The value returned by a function having non-void return type shall be used (Desde R2024a)
MISRA C:2023 Rule 17.8A function parameter should not be modified (Desde R2024a)
MISRA C:2023 Rule 17.9A function declared with a _Noreturn function specifier shall not return to its caller (Desde R2024a)
MISRA C:2023 Rule 17.10A function declared with a _Noreturn function specifier shall have void return type (Desde R2024a)
MISRA C:2023 Rule 17.11A function that never returns should be declared with a _Noreturn function specifier (Desde R2024a)
MISRA C:2023 Rule 17.12A function identifier should only be used with either a preceding &, or with a parenthesized parameter list (Desde R2024a)
MISRA C:2023 Rule 17.13A function type shall not be type qualified (Desde R2024a)
MISRA C:2023 Rule 18.1A pointer resulting from arithmetic on a pointer operand shall address an element of the same array as that pointer operand (Desde R2024a)
MISRA C:2023 Rule 18.2Subtraction between pointers shall only be applied to pointers that address elements of the same array (Desde R2024a)
MISRA C:2023 Rule 18.3The relational operators >, >=, < and <= shall not be applied to expressions of pointer type except where they point into the same object (Desde R2024a)
MISRA C:2023 Rule 18.4The +, -, += and -= operators should not be applied to an expression of pointer type (Desde R2024a)
MISRA C:2023 Rule 18.5Declarations should contain no more than two levels of pointer nesting (Desde R2024a)
MISRA C:2023 Rule 18.6The address of an object with automatic or thread-local storage shall not be copied to another object that persists after the first object has ceased to exist (Desde R2024a)
MISRA C:2023 Rule 18.7Flexible array members shall not be declared (Desde R2024a)
MISRA C:2023 Rule 18.8Variable-length arrays shall not be used (Desde R2024a)
MISRA C:2023 Rule 18.9An object with temporary lifetime shall not undergo array-to-pointer conversion (Desde R2024a)
MISRA C:2023 Rule 18.10Pointers to variably-modified array types shall not be used (Desde R2025a)
MISRA C:2023 Rule 19.1An object shall not be assigned or copied to an overlapping object (Desde R2024a)
MISRA C:2023 Rule 19.2The union keyword should not be used (Desde R2024a)
MISRA C:2023 Rule 20.1#include directives should only be preceded by preprocessor directives or comments (Desde R2024a)
MISRA C:2023 Rule 20.2The ', " or \ characters and the /* or // character sequences shall not occur in a header file name (Desde R2024a)
MISRA C:2023 Rule 20.3The #include directive shall be followed by either a <filename> or "filename" sequence (Desde R2024a)
MISRA C:2023 Rule 20.4A macro shall not be defined with the same name as a keyword (Desde R2024a)
MISRA C:2023 Rule 20.5#undef should not be used (Desde R2024a)
MISRA C:2023 Rule 20.6Tokens that look like a preprocessing directive shall not occur within a macro argument (Desde R2024a)
MISRA C:2023 Rule 20.7Expressions resulting from the expansion of macro parameters shall be enclosed in parentheses (Desde R2024a)
MISRA C:2023 Rule 20.8The controlling expression of a #if or #elif preprocessing directive shall evaluate to 0 or 1 (Desde R2024a)
MISRA C:2023 Rule 20.9All identifiers used in the controlling expression of #if or #elif preprocessing directives shall be #define'd before evaluation (Desde R2024a)
MISRA C:2023 Rule 20.10The # and ## preprocessor operators should not be used (Desde R2024a)
MISRA C:2023 Rule 20.11A macro parameter immediately following a # operator shall not immediately be followed by a ## operator (Desde R2024a)
MISRA C:2023 Rule 20.12A macro parameter used as an operand to the # or ## operators, which is itself subject to further macro replacement, shall only be used as an operand to these operators (Desde R2024a)
MISRA C:2023 Rule 20.13A line whose first token is # shall be a valid preprocessing directive (Desde R2024a)
MISRA C:2023 Rule 20.14All #else, #elif and #endif preprocessor directives shall reside in the same file as the #if, #ifdef or #ifndef directive to which they are related (Desde R2024a)
MISRA C:2023 Rule 21.1#define and #undef shall not be used on a reserved identifier or reserved macro name (Desde R2024a)
MISRA C:2023 Rule 21.2A reserved identifier or reserved macro name shall not be declared (Desde R2024a)
MISRA C:2023 Rule 21.3The memory allocation and deallocation functions of <stdlib.h> shall not be used (Desde R2024a)
MISRA C:2023 Rule 21.4The standard header file <setjmp.h> shall not be used (Desde R2024a)
MISRA C:2023 Rule 21.5The standard header file <signal.h> shall not be used (Desde R2024a)
MISRA C:2023 Rule 21.6The Standard Library input/output functions shall not be used (Desde R2024a)
MISRA C:2023 Rule 21.7The Standard Library functions atof, atoi, atol, and atoll functions of <stdlib.h> shall not be used (Desde R2024a)
MISRA C:2023 Rule 21.8The Standard Library termination functions of <stdlib.h> shall not be used (Desde R2024a)
MISRA C:2023 Rule 21.9The Standard Library library functions bsearch and qsort of <stdlib.h> shall not be used (Desde R2024a)
MISRA C:2023 Rule 21.10The Standard Library time and date functions shall not be used (Desde R2024a)
MISRA C:2023 Rule 21.11The standard header file <tgmath.h> should not be used (Desde R2024a)
MISRA C:2023 Rule 21.12The standard header file <fenv.h> shall not be used (Desde R2024a)
MISRA C:2023 Rule 21.13Any value passed to a function in <ctype.h> shall be representable as an unsigned char or be the value EOF (Desde R2024a)
MISRA C:2023 Rule 21.14The Standard Library function memcmp shall not be used to compare null terminated strings (Desde R2024a)
MISRA C:2023 Rule 21.15The pointer arguments to the Standard Library functions memcpy, memmove and memcmp shall be pointers to qualified or unqualified versions of compatible types (Desde R2024a)
MISRA C:2023 Rule 21.16The pointer arguments to the Standard Library function memcmp shall point to either a pointer type, an essentially signed type, an essentially unsigned type, an essentially Boolean type or an essentially enum type (Desde R2024a)
MISRA C:2023 Rule 21.17Use of the string handling function from <string.h> shall not result in accesses beyond the bounds of the objects referenced by their pointer parameters (Desde R2024a)
MISRA C:2023 Rule 21.18The size_t argument passed to any function in <string.h> shall have an appropriate value (Desde R2024a)
MISRA C:2023 Rule 21.19The pointers returned by the Standard Library functions localeconv, getenv, setlocale or strerror shall only be used as if they have pointer to const-qualified type (Desde R2024a)
MISRA C:2023 Rule 21.20The pointer returned by the Standard Library functions asctime, ctime, gmtime, localtime, localeconv, getenv, setlocale or strerror shall not be used following a subsequent call to the same function (Desde R2024a)
MISRA C:2023 Rule 21.21The Standard Library function system of <stdlib.h> shall not be used (Desde R2024a)
MISRA C:2023 Rule 21.22All operand arguments to any type-generic macros declared in <tgmath.h> shall have an appropriate essential type (Desde R2024a)
MISRA C:2023 Rule 21.23All operand arguments to any multi-argument type-generic macros declared in <tgmath.h> shall have the same standard type (Desde R2024a)
MISRA C:2023 Rule 21.24The random number generator functions of <stdlib.h> shall not be used (Desde R2024a)
MISRA C:2023 Rule 21.25All memory synchronization operations shall be executed in sequentially consistent order (Desde R2025a)
MISRA C:2023 Rule 22.1All resources obtained dynamically by means of Standard Library functions shall be explicitly released (Desde R2024a)
MISRA C:2023 Rule 22.2A block of memory shall only be freed if it was allocated by means of a Standard Library function (Desde R2024a)
MISRA C:2023 Rule 22.3The same file shall not be open for read and write access at the same time on different streams (Desde R2024a)
MISRA C:2023 Rule 22.4There shall be no attempt to write to a stream which has been opened as read-only (Desde R2024a)
MISRA C:2023 Rule 22.5A pointer to a FILE object shall not be dereferenced (Desde R2024a)
MISRA C:2023 Rule 22.6The value of a pointer to a FILE shall not be used after the associated stream has been closed (Desde R2024a)
MISRA C:2023 Rule 22.7The macro EOF shall only be compared with the unmodified return value from any Standard Library function capable of returning EOF (Desde R2024a)
MISRA C:2023 Rule 22.8The value of errno shall be set to zero prior to a call to an errno-setting-function (Desde R2024a)
MISRA C:2023 Rule 22.9The value of errno shall be tested against zero after calling an errno-setting function (Desde R2024a)
MISRA C:2023 Rule 22.10The value of errno shall only be tested when the last function to be called was an errno-setting function (Desde R2024a)
MISRA C:2023 Rule 22.11A thread that was previously either joined or detached shall not be subsequently joined nor detached (Desde R2024b)
MISRA C:2023 Rule 22.13Thread objects, thread synchronization objects and thread-specific storage pointers shall have appropriate storage duration (Desde R2025a)
MISRA C:2023 Rule 22.15Thread synchronization objects and thread-specific storage pointers shall not be destroyed until after all threads accessing them have terminated (Desde R2024b)
MISRA C:2023 Rule 22.16All mutex objects locked by a thread shall be explicitly unlocked by the same thread (Desde R2024b)
MISRA C:2023 Rule 22.17No thread shall unlock a mutex or call cnd_wait() or cnd_timedwait() for a mutex it has not locked before (Desde R2024b)
MISRA C:2023 Rule 22.18Non-recursive mutexes shall not be recursively locked (Desde R2025a)
MISRA C:2023 Rule 23.1A generic selection should only be expanded from a macro (Desde R2024a)
MISRA C:2023 Rule 23.2A generic selection that is not expanded from a macro shall not contain potential side effects in the controlling expression (Desde R2024a)
MISRA C:2023 Rule 23.3A generic selection should contain at least one non-default association (Desde R2024a)
MISRA C:2023 Rule 23.4A generic association shall list an appropriate type (Desde R2024a)
MISRA C:2023 Rule 23.5A generic selection should not depend on implicit pointer type conversion (Desde R2024a)
MISRA C:2023 Rule 23.6The controlling expression of a generic selection shall have an essential type that matches its standard type (Desde R2024a)
MISRA C:2023 Rule 23.7A generic selection that is expanded from a macro should evaluate its argument only once (Desde R2024a)
MISRA C:2023 Rule 23.8A default association shall appear as either the first or the last association of a generic selection (Desde R2024a)

Temas

Compatibilidad de Polyspace con MISRA C:2023

Subconjuntos de MISRA C:2023

Reglas específicas de MISRA C:2023