xref: /php-src/ext/shmop/shmop_arginfo.h (revision db545767)
1 /* This is a generated file, edit the .stub.php file instead.
2  * Stub hash: e7f250077b6721539caee96afe4ed392396018f9 */
3 
4 ZEND_BEGIN_ARG_WITH_RETURN_OBJ_TYPE_MASK_EX(arginfo_shmop_open, 0, 4, Shmop, MAY_BE_FALSE)
5 	ZEND_ARG_TYPE_INFO(0, key, IS_LONG, 0)
6 	ZEND_ARG_TYPE_INFO(0, mode, IS_STRING, 0)
7 	ZEND_ARG_TYPE_INFO(0, permissions, IS_LONG, 0)
8 	ZEND_ARG_TYPE_INFO(0, size, IS_LONG, 0)
9 ZEND_END_ARG_INFO()
10 
11 ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_shmop_read, 0, 3, IS_STRING, 0)
12 	ZEND_ARG_OBJ_INFO(0, shmop, Shmop, 0)
13 	ZEND_ARG_TYPE_INFO(0, offset, IS_LONG, 0)
14 	ZEND_ARG_TYPE_INFO(0, size, IS_LONG, 0)
15 ZEND_END_ARG_INFO()
16 
17 ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_shmop_close, 0, 1, IS_VOID, 0)
18 	ZEND_ARG_OBJ_INFO(0, shmop, Shmop, 0)
19 ZEND_END_ARG_INFO()
20 
21 ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_shmop_size, 0, 1, IS_LONG, 0)
22 	ZEND_ARG_OBJ_INFO(0, shmop, Shmop, 0)
23 ZEND_END_ARG_INFO()
24 
25 ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_shmop_write, 0, 3, IS_LONG, 0)
26 	ZEND_ARG_OBJ_INFO(0, shmop, Shmop, 0)
27 	ZEND_ARG_TYPE_INFO(0, data, IS_STRING, 0)
28 	ZEND_ARG_TYPE_INFO(0, offset, IS_LONG, 0)
29 ZEND_END_ARG_INFO()
30 
31 ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_shmop_delete, 0, 1, _IS_BOOL, 0)
32 	ZEND_ARG_OBJ_INFO(0, shmop, Shmop, 0)
33 ZEND_END_ARG_INFO()
34 
35 ZEND_FUNCTION(shmop_open);
36 ZEND_FUNCTION(shmop_read);
37 ZEND_FUNCTION(shmop_close);
38 ZEND_FUNCTION(shmop_size);
39 ZEND_FUNCTION(shmop_write);
40 ZEND_FUNCTION(shmop_delete);
41 
42 static const zend_function_entry ext_functions[] = {
43 	ZEND_FE(shmop_open, arginfo_shmop_open)
44 	ZEND_FE(shmop_read, arginfo_shmop_read)
45 	ZEND_RAW_FENTRY("shmop_close", zif_shmop_close, arginfo_shmop_close, ZEND_ACC_DEPRECATED, NULL, NULL)
46 	ZEND_FE(shmop_size, arginfo_shmop_size)
47 	ZEND_FE(shmop_write, arginfo_shmop_write)
48 	ZEND_FE(shmop_delete, arginfo_shmop_delete)
49 	ZEND_FE_END
50 };
51 
register_shmop_symbols(int module_number)52 static void register_shmop_symbols(int module_number)
53 {
54 
55 	zend_attribute *attribute_Deprecated_func_shmop_close_0 = zend_add_function_attribute(zend_hash_str_find_ptr(CG(function_table), "shmop_close", sizeof("shmop_close") - 1), ZSTR_KNOWN(ZEND_STR_DEPRECATED_CAPITALIZED), 2);
56 	zval attribute_Deprecated_func_shmop_close_0_arg0;
57 	zend_string *attribute_Deprecated_func_shmop_close_0_arg0_str = zend_string_init("8.0", strlen("8.0"), 1);
58 	ZVAL_STR(&attribute_Deprecated_func_shmop_close_0_arg0, attribute_Deprecated_func_shmop_close_0_arg0_str);
59 	ZVAL_COPY_VALUE(&attribute_Deprecated_func_shmop_close_0->args[0].value, &attribute_Deprecated_func_shmop_close_0_arg0);
60 	attribute_Deprecated_func_shmop_close_0->args[0].name = ZSTR_KNOWN(ZEND_STR_SINCE);
61 	zval attribute_Deprecated_func_shmop_close_0_arg1;
62 	zend_string *attribute_Deprecated_func_shmop_close_0_arg1_str = zend_string_init("as Shmop objects are freed automatically", strlen("as Shmop objects are freed automatically"), 1);
63 	ZVAL_STR(&attribute_Deprecated_func_shmop_close_0_arg1, attribute_Deprecated_func_shmop_close_0_arg1_str);
64 	ZVAL_COPY_VALUE(&attribute_Deprecated_func_shmop_close_0->args[1].value, &attribute_Deprecated_func_shmop_close_0_arg1);
65 	attribute_Deprecated_func_shmop_close_0->args[1].name = ZSTR_KNOWN(ZEND_STR_MESSAGE);
66 }
67 
register_class_Shmop(void)68 static zend_class_entry *register_class_Shmop(void)
69 {
70 	zend_class_entry ce, *class_entry;
71 
72 	INIT_CLASS_ENTRY(ce, "Shmop", NULL);
73 	class_entry = zend_register_internal_class_with_flags(&ce, NULL, ZEND_ACC_FINAL|ZEND_ACC_NO_DYNAMIC_PROPERTIES|ZEND_ACC_NOT_SERIALIZABLE);
74 
75 	return class_entry;
76 }
77