+2018-08-09 Simon Marchi <simon.marchi@ericsson.com>
+
+ * common/scoped_mmap.c (mmap_file): Silence ARI warning.
+ * dwarf-index-cache.c (create_dir_and_check): Likewise.
+ (test_mkdir_recursive): Likewise.
+ * dwarf-index-write.c (write_psymtabs_to_index): Likewise.
+
2018-08-09 Andrew Burgess <andrew.burgess@embecosm.com>
* valarith.c (value_subscripted_rvalue): If an array is not in
{
scoped_fd fd (open (filename, O_RDONLY));
if (fd.get () < 0)
- perror_with_name ("open");
+ perror_with_name (("open"));
off_t size = lseek (fd.get (), 0, SEEK_END);
if (size < 0)
- perror_with_name ("lseek");
+ perror_with_name (("lseek"));
/* We can't map an empty file. */
if (size == 0)
scoped_mmap mmapped_file (nullptr, size, PROT_READ, MAP_PRIVATE, fd.get (), 0);
if (mmapped_file.get () == MAP_FAILED)
- perror_with_name ("mmap");
+ perror_with_name (("mmap"));
return mmapped_file;
}
struct stat st;
if (stat (dir, &st) != 0)
- perror_with_name ("stat");
+ perror_with_name (("stat"));
return (st.st_mode & S_IFDIR) != 0;
}
char base[] = "/tmp/gdb-selftests-XXXXXX";
if (mkdtemp (base) == NULL)
- perror_with_name ("mkdtemp");
+ perror_with_name (("mkdtemp"));
/* Try not to leave leftover directories. */
struct cleanup_dirs {
gdb::optional<scoped_fd> out_file_fd
(gdb::in_place, mkstemp (filename_temp.data ()));
if (out_file_fd->get () == -1)
- perror_with_name ("mkstemp");
+ perror_with_name (("mkstemp"));
FILE *out_file = gdb_fopen_cloexec (filename_temp.data (), "wb").release ();
if (out_file == nullptr)
gdb::optional<scoped_fd> out_file_str_fd
(gdb::in_place, mkstemp (filename_str_temp.data ()));
if (out_file_str_fd->get () == -1)
- perror_with_name ("mkstemp");
+ perror_with_name (("mkstemp"));
FILE *out_file_str
= gdb_fopen_cloexec (filename_str_temp.data (), "wb").release ();
/* Close and move the str file in place. */
close_out_file_str.reset ();
if (rename (filename_str_temp.data (), filename_str.c_str ()) != 0)
- perror_with_name ("rename");
+ perror_with_name (("rename"));
}
else
{
/* Close and move the file in place. */
close_out_file.reset ();
if (rename (filename_temp.data (), filename.c_str ()) != 0)
- perror_with_name ("rename");
+ perror_with_name (("rename"));
}
/* Implementation of the `save gdb-index' command.