腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
工具
TVP
最新优惠活动
文章/答案/技术大牛
搜索
搜索
关闭
发布
精选内容/技术社群/优惠产品,
尽在小程序
立即前往
文章
问答
(9999+)
视频
沙龙
1
回答
mq_
open
()
返回
-
1
错误
、
int main(int argc, char **argv) mqd_t mqd; 有人能帮我这个忙吗?
浏览 12
提问于2015-06-07
得票数 0
1
回答
如何处理
返回
1
的
open
()
、
、
/a.out >&-运行时,
open
()
返回
1
,我理解这一点。 assert(fd
1
!= -
1
);
浏览 5
提问于2017-11-12
得票数 1
回答已采纳
4
回答
perf_event_
open
总是
返回
-
1
、
、
、
armv7l GNU/
Linux
#define _GNU_SOURCE
1
#include <fcntl.h>我使用了perf手册中的第二个例子,它有相同的问题(由fd=-
1
触发的错误打开领导者)。, &attr, 0, -
1
, -
1
, 0); p
浏览 4
提问于2016-07-18
得票数 6
回答已采纳
3
回答
sem_
open
在
linux
下
返回
0
、
、
<fcntl.h>{ cout<<my_semaphore<<endl;这打印出0:信号量没有创建。我做错了什么?
浏览 2
提问于2015-04-19
得票数 3
回答已采纳
1
回答
OPEN
GL ES 2.0 - glGetAttribLocation
返回
-
1
、
、
、
maPositionHandle = GLES20.glGetAttribLocation(mProgram, "aPosition");** 在标记的行之后,由于某种原因,maPositionHandle是-
1
。uMVPMatrix * uTMatrix * gl_Position;} 正如您所看到的,有一个名为aPosition的属性,但我得到的是-
1
,
浏览 4
提问于2012-03-25
得票数 1
回答已采纳
4
回答
文件描述符的可能值是什么?
、
、
、
例如,我知道,当我在
linux
系统上使用#include <unistd.h>时,会调用一个打开文件以便读取:fileDescriptor =
open
("/some/filename",O_RDONLY);(-
1
浏览 8
提问于2013-08-29
得票数 19
回答已采纳
0
回答
open
("/dev/mem",O_RDWR)
返回
-
1
我正在尝试使用原生应用程序将移植到安卓系统。
浏览 9
提问于2017-12-08
得票数 2
回答已采纳
2
回答
shm_
open
()
返回
-
1
、
、
、
create shared memoery void *shared_memory = (void *)0; exit(
1
); perror("ftruncate
浏览 0
提问于2018-11-01
得票数 1
1
回答
g77运行问题
drjinasena@drjinasena-All-Series:~/minimum$ g77 sorting.f /usr/bin/ld: cannot find -lgcc_s collect2: ld returned
1
浏览 0
提问于2016-08-23
得票数 1
1
回答
我可以在windows上将DVD作为单个文件读取吗?
我知道这在
linux
上是可能的。我尝试使用
open
("E:", 0);和
open
("E:\\", 0);,但它
返回
-
1
。我希望将DVD作为一个大文件读取,而不是将其用作文件系统。
浏览 2
提问于2016-04-29
得票数 0
2
回答
用waf交叉编译ARM9的buildroot包
、
、
、
、
/lib/gcc/arm-none-
linux
-gnueabi/4.6.1/../../../../lib/gcc/arm-none-
linux
-gnueabi/4.6.1/../../../../usr/lib/libgobject-2.0.so: file not recognized: File format not recognized collect2: ld
浏览 56
提问于2013-09-10
得票数 1
回答已采纳
1
回答
open
()
返回
新文件描述符posix
、
、
、
我必须在posix中为
open
()设置
返回
值。如何
返回
Linux
手册页中所说的“新文件描述符”:
返回
值
open
()、openat()和creat()
返回
新的文件描述符,或者-
1
如果发生错误(在这种情况下,errno被适当设置)。我所做的是纠正这个系统调用的
返回
值。很明显它还出了点问题。
浏览 0
提问于2014-11-09
得票数 1
回答已采纳
1
回答
无法打开链接器脚本文件libgcc_s.so.
1
:打开的文件太多
、
、
、
、
我正在使用来自存储库的gcc-arm-
linux
工具链。配置如下: /usr/lib/gcc/arm-
linux
-gnueabi/4.6/libgcc_s.so 在同一个文件夹中创建指向libgcc_s.so.
1
的符号
浏览 3
提问于2012-08-06
得票数 1
回答已采纳
3
回答
打开一个命令或另一个命令的bash命令
、
、
、
对于MacOS :打开file.pdf (在Mac中打开默认pdf程序中的pdf ) all:xdg-
open
file.pdf感谢@rubiks,现在代码运行良好。代码如下所示: # set pdfviewer
浏览 0
提问于2015-11-09
得票数 3
回答已采纳
1
回答
如何在关闭curses窗口后
返回
正常模式
、
下面是我的代码:#include <string.h> char str[120]; while (
1
)strcmp(str, "
open
")) { c=getch(); } printf(&quo
浏览 1
提问于2011-12-01
得票数 0
1
回答
ld -shared成功,但在运行时出现分段错误
、
、
我是一个学习基础编译的初学者。我创建了一个非常简单的c文件,如下所示 #include <stdio.h> printf("Hello World!\n");} 然后我运行命令, cpp -E helloworld.c -o helloworld.ias helloworld.s -o helloworld.o ld -shared -o helloworld /usr/lib64/libc.so helloworld.o
浏览 56
提问于2020-09-25
得票数 0
1
回答
无法将库目录添加到ld
、
问题所在attempt to
open
/usr/i486-
linux
-gnu/lib32/libmath.so failedattempt to
open
/usr/local/lib/i386-
linux
-gnu/libmath.so failed attempt to
open
/usr/
浏览 1
提问于2014-10-27
得票数 1
回答已采纳
1
回答
C套接字关闭检测
、
但是当我运行这篇文章中的代码时(粘贴在下面):pid_t childProcess = fork(); perror("Unable to create new process for client connection");} // call poll
浏览 21
提问于2019-11-29
得票数 0
1
回答
利用C程序中的inode结构实现
Linux
下目录文件的修改
、
、
、
、
在
Linux
中,inode结构存储有关文件和目录的元数据。我想要将文件保护模式从目录更改为文件。\n"), exit(EXIT_FAILURE); perror("fstat"); printf(" device: %lld\n",
浏览 0
提问于2012-03-06
得票数 1
1
回答
使用mmap增加文件的大小
、
、
、
在Windows上的Python中,我可以通过以下方式创建一个大文件 f =
open
('big.file', 'w') f =
open
('big.file', 'r+')现在big.file大约是
1
千兆字节。然而,在
Linux
上,这将
返回
ValueError: m
浏览 4
提问于2013-07-01
得票数 6
回答已采纳
点击加载更多
扫码
添加站长 进交流群
领取专属
10元无门槛券
手把手带您无忧上云
相关
资讯
Win或Linux系统下用conda安装Open Babel
Linux错误代码:errno.h与返回值-EINVAL
Linux快速入门(1)
爱上Linux系列(1)
Linux基础入门课程(1)
热门
标签
更多标签
云服务器
ICP备案
对象存储
即时通信 IM
实时音视频
活动推荐
运营活动
广告
关闭
领券