From: Bart Van Assche Date: Mon, 7 Mar 2011 18:00:26 +0000 (+0000) Subject: Added file header and adjusted indentation. X-Git-Tag: svn/VALGRIND_3_7_0~622 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=93b1b10abe00c0f70db0178715b133e69bcbf5a3;p=thirdparty%2Fvalgrind.git Added file header and adjusted indentation. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11607 --- diff --git a/drd/drd_darwin_intercepts.c b/drd/drd_darwin_intercepts.c index c95579039e..c09fb8a14c 100644 --- a/drd/drd_darwin_intercepts.c +++ b/drd/drd_darwin_intercepts.c @@ -1,3 +1,27 @@ +/* -*- mode: C; c-basic-offset: 3; -*- */ +/* + This file is part of drd, a thread error detector. + + Copyright (C) 2006-2011 Bart Van Assche . + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation; either version 2 of the + License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA + 02111-1307, USA. + + The GNU General Public License is contained in the file COPYING. +*/ + #include #include #include "valgrind.h" @@ -18,14 +42,14 @@ void* VG_WRAP_FUNCTION_ZZ(dyld, ZuZZN4dyld18fastBindLazySymbolEPP11ImageLoaderm) void* VG_WRAP_FUNCTION_ZZ(dyld, ZuZZN4dyld18fastBindLazySymbolEPP11ImageLoaderm) (void** imageLoaderCache, uintptr_t lazyBindingInfoOffset) { - void* res; - OrigFn fn; + void* res; + OrigFn fn; - VALGRIND_GET_ORIG_FN(fn); + VALGRIND_GET_ORIG_FN(fn); - ANNOTATE_IGNORE_READS_AND_WRITES_BEGIN(); - CALL_FN_W_WW(res, fn, imageLoaderCache, lazyBindingInfoOffset); - ANNOTATE_IGNORE_READS_AND_WRITES_END(); + ANNOTATE_IGNORE_READS_AND_WRITES_BEGIN(); + CALL_FN_W_WW(res, fn, imageLoaderCache, lazyBindingInfoOffset); + ANNOTATE_IGNORE_READS_AND_WRITES_END(); - return res; + return res; }