error: call to '__creat_missing_mode' declared with attribute error

int fd;
fd=open("/data/data/tmp.txt", O_WRONLY|O_CREAT);
write(fd, prop_name, sizeof(prop_name));
close(fd);


ERROR:

In file included from hardware/libhardware/hardware.c:29:0:
In function 'open',
    inlined from 'hw_get_module_by_class' at hardware/libhardware/hardware.c:175:3:
bionic/libc/include/fcntl.h:100:13: error: call to '__creat_missing_mode' declared with attribute error: called with O_CREAT, but missing mode
             __creat_missing_mode();  // compile time error

SOLUTION:

fd=open("/data/data/tmp.txt", O_WRONLY|O_CREAT, 0666);


使用open函数时,如果在第二个参数中使用了 O_CREAT,就必须添加第三个参数:创建文件时赋予的初始权限。


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值