set_constraint_handler_s, constraint_handler_t

来自cppreference.com
< c‎ | error
在标头 <stdlib.h> 定义
constraint_handler_t set_constraint_handler_s( constraint_handler_t handler );
(1) (C11 起)
typedef void (*constraint_handler_t)( const char *restrict msg,

                                      void *restrict ptr,

                                      errno_t error);
(2) (C11 起)
1) 配置所有带边界检查函数在发生运行时制约违规时所调用的处理函数,或恢复成默认处理函数(若 handler 是空指针)。
2) 指向将在运行时制约违规时调用的处理函数的指针。

若从不调用 set_constraint_handler_s,则默认处理是实现定义的:它可以是 abort_handler_signore_handler_s 或另外的实现定义处理函数。

同所有边界检查函数, set_constraint_handler_s, constraint_handler_t 仅若实现定义了 __STDC_LIB_EXT1__ ,且用户在包含 <stdlib.h> 前定义 __STDC_WANT_LIB_EXT1__ 为整数常量 1 才保证可用。

与所有带边界检查的函数一样,仅当实现定义了 __STDC_LIB_EXT1__ 并且用户在包含 <stdlib.h> 之前将 __STDC_WANT_LIB_EXT1__ 定义为整数常量 1 时,set_constraint_handler_sconstraint_handler_t 才保证可用。

参数

handler - constraint_handler_t 类型的函数指针或空指针
msg - 指向描述错误的字符串的指针
ptr - 指向由实现定义的对象的指针或为空指针。由实现定义的对象的例子可以给出检测到违规的函数的名字和检测到违规的行号
error - 如果所调用的函数刚好是返回 errno_t 的函数,则是将由此函数返回的错误

返回值

指向先前安装的运行时制约处理函数的指针(注意:此指针决不会是空指针,因为调用 set_constraint_handler_s(NULL) 会设置系统默认处理函数)。

示例

#define __STDC_WANT_LIB_EXT1__ 1
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
 
int main(void)
{
#ifdef __STDC_LIB_EXT1__
    char dst[2];
    set_constraint_handler_s(ignore_handler_s);
    int r = strcpy_s(dst, sizeof dst, "Too long!");
    printf("dst = \"%s\", r = %d\n", dst, r);
    set_constraint_handler_s(abort_handler_s);
    r = strcpy_s(dst, sizeof dst, "Too long!");
    printf("dst = \"%s\", r = %d\n", dst, r);
#endif
}

可能的输出:

dst = "", r = 22
abort_handler_s was called in response to a runtime-constraint violation.
 
The runtime-constraint violation was caused by the following expression in strcpy_s:
(s1max <= (s2_len=strnlen_s(s2, s1max)) ) (in string_s.c:62)
 
Note to end users: This program was terminated as a result
of a bug present in the software. Please reach out to your
software's vendor to get more help.
Aborted

引用

  • C23 标准(ISO/IEC 9899:2024):
  • K.3.6/2 constraint_handler_t (第 TBD 页)
  • K.3.6.1.1 The set_constraint_handler_s function (第 TBD 页)
  • C17 标准(ISO/IEC 9899:2018):
  • K.3.6/2 constraint_handler_t (第 TBD 页)
  • K.3.6.1.1 The set_constraint_handler_s function (第 TBD 页)
  • C11 标准(ISO/IEC 9899:2011):
  • K.3.6/2 constraint_handler_t (第 604 页)
  • K.3.6.1.1 The set_constraint_handler_s function (第 604-605 页)

参阅

边界检查函数的异常中止回调
(函数)
边界检查函数的忽略回调
(函数)