X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/067f764922a3f1cbf3f7b3cce63a9206b47f5516..39c935d6d5ee86d153f6f7e6a10d723ae7c57f6f:/examples/c/io-file-system/io-file-system.c?ds=sidebyside diff --git a/examples/c/io-file-system/io-file-system.c b/examples/c/io-file-system/io-file-system.c index 29b44e132e..0403333550 100644 --- a/examples/c/io-file-system/io-file-system.c +++ b/examples/c/io-file-system/io-file-system.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2008-2021. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -22,22 +22,22 @@ static void show_info(unsigned int disk_count, const sg_disk_t* disks) XBT_INFO("Storage info on %s:", sg_host_self_get_name()); for (unsigned int i = 0; i < disk_count; i++) { - const sg_disk_t d = disks[i]; + const_sg_disk_t d = disks[i]; // Retrieve disk's information - XBT_INFO(" %s (%s) Used: %llu; Free: %llu; Total: %llu.", sg_disk_name(d), sg_disk_get_mount_point(d), + XBT_INFO(" %s (%s) Used: %llu; Free: %llu; Total: %llu.", sg_disk_get_name(d), sg_disk_get_mount_point(d), sg_disk_get_size_used(d), sg_disk_get_size_free(d), sg_disk_get_size(d)); } } -static void host(XBT_ATTRIB_UNUSED int argc, XBT_ATTRIB_UNUSED char* argv[]) +static void host(int argc, char* argv[]) { unsigned int disk_count; sg_disk_t* disks; - sg_host_disks(sg_host_self(), &disk_count, &disks); + sg_host_get_disks(sg_host_self(), &disk_count, &disks); show_info(disk_count, disks); - // Open an non-existing file to create it + // Open a non-existing file to create it const char* filename = "/scratch/tmp/data.txt"; sg_file_t file = sg_file_open(filename, NULL);