Changes in / [2d9e75d:3c9fc94]
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
memlog.cpp
r2d9e75d r4c51931 1 // *****************************************************************************2 // Copyright (C) 2015, UChicago Argonne, LLC3 // All Rights Reserved4 // memlog (ANL-SF-15-081)5 // Hal Finkel, Argonne National Laboratory6 //7 // OPEN SOURCE LICENSE8 //9 // Under the terms of Contract No. DE-AC02-06CH11357 with UChicago Argonne, LLC,10 // the U.S. Government retains certain rights in this software.11 //12 // Redistribution and use in source and binary forms, with or without13 // modification, are permitted provided that the following conditions are met:14 //15 // 1. Redistributions of source code must retain the above copyright notice, this16 // list of conditions and the following disclaimer.17 //18 // 2. Redistributions in binary form must reproduce the above copyright notice,19 // this list of conditions and the following disclaimer in the documentation20 // and/or other materials provided with the distribution.21 //22 // 3. Neither the names of UChicago Argonne, LLC or the Department of Energy nor23 // the names of its contributors may be used to endorse or promote products24 // derived from this software without specific prior written permission.25 //26 // *****************************************************************************27 // DISCLAIMER28 //29 // THE SOFTWARE IS SUPPLIED “AS IS” WITHOUT WARRANTY OF ANY KIND.30 //31 // NEITHER THE UNTED STATES GOVERNMENT, NOR THE UNITED STATES DEPARTMENT OF32 // ENERGY, NOR UCHICAGO ARGONNE, LLC, NOR ANY OF THEIR EMPLOYEES, MAKES ANY33 // WARRANTY, EXPRESS OR IMPLIED, OR ASSUMES ANY LEGAL LIABILITY OR RESPONSIBILITY34 // FOR THE ACCURACY, COMPLETENESS, OR USEFULNESS OF ANY INFORMATION, DATA,35 // APPARATUS, PRODUCT, OR PROCESS DISCLOSED, OR REPRESENTS THAT ITS USE WOULD NOT36 // INFRINGE PRIVATELY OWNED RIGHTS.37 //38 // *****************************************************************************39 40 1 #ifndef _GNU_SOURCE 41 2 #define _GNU_SOURCE -
memlog_analyze
r2d9e75d r21d3542 1 1 #! /usr/bin/env perl 2 3 # *****************************************************************************4 # Copyright (C) 2015, UChicago Argonne, LLC5 # All Rights Reserved6 # memlog (ANL-SF-15-081)7 # Hal Finkel, Argonne National Laboratory8 #9 # OPEN SOURCE LICENSE10 #11 # Under the terms of Contract No. DE-AC02-06CH11357 with UChicago Argonne, LLC,12 # the U.S. Government retains certain rights in this software.13 #14 # Redistribution and use in source and binary forms, with or without15 # modification, are permitted provided that the following conditions are met:16 #17 # 1. Redistributions of source code must retain the above copyright notice, this18 # list of conditions and the following disclaimer.19 #20 # 2. Redistributions in binary form must reproduce the above copyright notice,21 # this list of conditions and the following disclaimer in the documentation22 # and/or other materials provided with the distribution.23 #24 # 3. Neither the names of UChicago Argonne, LLC or the Department of Energy nor25 # the names of its contributors may be used to endorse or promote products26 # derived from this software without specific prior written permission.27 #28 # *****************************************************************************29 # DISCLAIMER30 #31 # THE SOFTWARE IS SUPPLIED “AS IS” WITHOUT WARRANTY OF ANY KIND.32 #33 # NEITHER THE UNTED STATES GOVERNMENT, NOR THE UNITED STATES DEPARTMENT OF34 # ENERGY, NOR UCHICAGO ARGONNE, LLC, NOR ANY OF THEIR EMPLOYEES, MAKES ANY35 # WARRANTY, EXPRESS OR IMPLIED, OR ASSUMES ANY LEGAL LIABILITY OR RESPONSIBILITY36 # FOR THE ACCURACY, COMPLETENESS, OR USEFULNESS OF ANY INFORMATION, DATA,37 # APPARATUS, PRODUCT, OR PROCESS DISCLOSED, OR REPRESENTS THAT ITS USE WOULD NOT38 # INFRINGE PRIVATELY OWNED RIGHTS.39 #40 # *****************************************************************************41 42 2 use strict; 43 3 use File::Basename;
Note: See TracChangeset
for help on using the changeset viewer.