From e61a50780ad4e1f4ebd7a7f1ce9666ce56bb7976 Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Mon, 4 Jan 2016 21:57:57 +0100 Subject: [PATCH 1/1] mv src/simdag/private.h src/private/simdag_private.h --- src/simdag/instr_sd_task.c | 4 ++-- src/simdag/sd_daxloader.c | 4 ++-- src/simdag/sd_dotloader.c | 4 ++-- src/simdag/sd_global.c | 4 ++-- src/simdag/sd_link.c | 4 ++-- src/simdag/sd_task.c | 4 ++-- src/simdag/sd_workstation.c | 4 ++-- src/simdag/{private.h => simdag_private.h} | 0 src/simgrid/host.cpp | 4 ++-- 9 files changed, 16 insertions(+), 16 deletions(-) rename src/simdag/{private.h => simdag_private.h} (100%) diff --git a/src/simdag/instr_sd_task.c b/src/simdag/instr_sd_task.c index 1194aae2ca..1b667413f9 100644 --- a/src/simdag/instr_sd_task.c +++ b/src/simdag/instr_sd_task.c @@ -1,11 +1,11 @@ -/* Copyright (c) 2013-2015. The SimGrid Team. +/* Copyright (c) 2013-2016. 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. */ #include "src/instr/instr_private.h" -#include "private.h" +#include "src/simdag/simdag_private.h" #include "simgrid/simdag.h" XBT_LOG_NEW_DEFAULT_SUBCATEGORY (instr_sd, instr, "SD"); diff --git a/src/simdag/sd_daxloader.c b/src/simdag/sd_daxloader.c index 5eefa8e3ec..542a675ae2 100644 --- a/src/simdag/sd_daxloader.c +++ b/src/simdag/sd_daxloader.c @@ -1,10 +1,10 @@ -/* Copyright (c) 2009-2015. The SimGrid Team. +/* Copyright (c) 2009-2016. 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. */ -#include "private.h" +#include "src/simdag/simdag_private.h" #include "simgrid/simdag.h" #include "xbt/misc.h" #include "xbt/log.h" diff --git a/src/simdag/sd_dotloader.c b/src/simdag/sd_dotloader.c index 4e0c4a1534..5cc8bfc971 100644 --- a/src/simdag/sd_dotloader.c +++ b/src/simdag/sd_dotloader.c @@ -1,10 +1,10 @@ -/* Copyright (c) 2009-2015. The SimGrid Team. +/* Copyright (c) 2009-2016. 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. */ -#include "private.h" +#include "src/simdag/simdag_private.h" #include "simgrid/simdag.h" #include "xbt/misc.h" #include "xbt/log.h" diff --git a/src/simdag/sd_global.c b/src/simdag/sd_global.c index 5c5539805a..3464c12c3e 100644 --- a/src/simdag/sd_global.c +++ b/src/simdag/sd_global.c @@ -1,10 +1,10 @@ -/* Copyright (c) 2006-2015. The SimGrid Team. +/* Copyright (c) 2006-2016. 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. */ -#include "private.h" +#include "src/simdag/simdag_private.h" #include "instr/instr_interface.h" #include "xbt/sysdep.h" #include "xbt/dynar.h" diff --git a/src/simdag/sd_link.c b/src/simdag/sd_link.c index 6ee5e6f788..3d4e4cf57d 100644 --- a/src/simdag/sd_link.c +++ b/src/simdag/sd_link.c @@ -1,10 +1,10 @@ -/* Copyright (c) 2006-2015. The SimGrid Team. +/* Copyright (c) 2006-2016. 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. */ -#include "private.h" +#include "src/simdag/simdag_private.h" #include "simgrid/simdag.h" #include "xbt/dict.h" #include "xbt/sysdep.h" diff --git a/src/simdag/sd_task.c b/src/simdag/sd_task.c index 9fd6cd3f53..c0cf34c66c 100644 --- a/src/simdag/sd_task.c +++ b/src/simdag/sd_task.c @@ -1,10 +1,10 @@ -/* Copyright (c) 2006-2015. The SimGrid Team. +/* Copyright (c) 2006-2016. 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. */ -#include "private.h" +#include "src/simdag/simdag_private.h" #include "simgrid/simdag.h" #include "xbt/sysdep.h" #include "xbt/dynar.h" diff --git a/src/simdag/sd_workstation.c b/src/simdag/sd_workstation.c index 7a4a17cecf..e61ebdaac8 100644 --- a/src/simdag/sd_workstation.c +++ b/src/simdag/sd_workstation.c @@ -1,10 +1,10 @@ -/* Copyright (c) 2006-2015. The SimGrid Team. +/* Copyright (c) 2006-2016. 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. */ -#include "private.h" +#include "src/simdag/simdag_private.h" #include "simgrid/simdag.h" #include "xbt/dict.h" #include "xbt/lib.h" diff --git a/src/simdag/private.h b/src/simdag/simdag_private.h similarity index 100% rename from src/simdag/private.h rename to src/simdag/simdag_private.h diff --git a/src/simgrid/host.cpp b/src/simgrid/host.cpp index 002e68ca3f..cb72bc8c84 100644 --- a/src/simgrid/host.cpp +++ b/src/simgrid/host.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2015. The SimGrid Team. +/* Copyright (c) 2013-201. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -61,7 +61,7 @@ int ROUTING_HOST_LEVEL; int USER_HOST_LEVEL; #include "src/msg/msg_private.h" // MSG_host_priv_free. FIXME: killme -#include "src/simdag/private.h" // __SD_workstation_destroy. FIXME: killme +#include "src/simdag/simdag_private.h" // __SD_workstation_destroy. FIXME: killme #include "src/simix/smx_host_private.h" // SIMIX_host_destroy. FIXME: killme #include "src/surf/cpu_interface.hpp" #include "src/surf/surf_routing.hpp" -- 2.20.1