是否可以在SimGrid中创建文件?
例如,在某个执行程序创建文件并使用Msg_file_write()
将输出写入文件之后。
为此,我尝试使用名称不存在的Msg_file_open()
,期望simgrid创建一个新文件。但编译器只给了我一个
Segmentation fault.
MSG_file_write和MSG_file_open的行为示例如下https://github.com/simgrid/simgrid/blob/master/examples/msg/io-file/io-file.c和https://github.com/simgrid/simgrid/blob/master/examples/msg/io-storage/io-storage.c
关于您的具体问题,需要的不仅仅是"我有一个细分错误"。你有没有任何最低限度的工作例子来重现你的问题,或者至少有一些回溯?