From patchwork Sun Sep 26 14:45:25 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nicola Pero X-Patchwork-Id: 65787 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id A9917B70DA for ; Mon, 27 Sep 2010 00:45:37 +1000 (EST) Received: (qmail 2222 invoked by alias); 26 Sep 2010 14:45:35 -0000 Received: (qmail 2214 invoked by uid 22791); 26 Sep 2010 14:45:34 -0000 X-SWARE-Spam-Status: No, hits=0.3 required=5.0 tests=AWL, BAYES_00, RCVD_IN_PSBL, SARE_SUB_ENC_UTF8, TW_BJ, T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from fencepost.gnu.org (HELO fencepost.gnu.org) (140.186.70.10) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sun, 26 Sep 2010 14:45:29 +0000 Received: from eggs.gnu.org ([140.186.70.92]:45595) by fencepost.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1OzsTn-0008T0-Hi for gcc-patches@gnu.org; Sun, 26 Sep 2010 10:45:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OzsTl-00051F-Pm for gcc-patches@gnu.org; Sun, 26 Sep 2010 10:45:27 -0400 Received: from smtp151.iad.emailsrvr.com ([207.97.245.151]:60928) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OzsTl-00051B-NV for gcc-patches@gnu.org; Sun, 26 Sep 2010 10:45:25 -0400 Received: from relay15.relay.iad.mlsrvr.com (localhost [127.0.0.1]) by relay15.relay.iad.mlsrvr.com (SMTP Server) with ESMTP id 20A121B41B9 for ; Sun, 26 Sep 2010 10:45:25 -0400 (EDT) Received: from dynamic11.wm-web.iad.mlsrvr.com (dynamic11.wm-web.iad.mlsrvr.com [192.168.2.218]) by relay15.relay.iad.mlsrvr.com (SMTP Server) with ESMTP id 1BFE91B41B4 for ; Sun, 26 Sep 2010 10:45:25 -0400 (EDT) Received: from meta-innovation.com (localhost [127.0.0.1]) by dynamic11.wm-web.iad.mlsrvr.com (Postfix) with ESMTP id 0E14DE0086 for ; Sun, 26 Sep 2010 10:45:25 -0400 (EDT) Received: by www2.webmail.us (Authenticated sender: nicola.pero@meta-innovation.com, from: nicola.pero@meta-innovation.com) with HTTP; Sun, 26 Sep 2010 16:45:25 +0200 (CEST) Date: Sun, 26 Sep 2010 16:45:25 +0200 (CEST) Subject: =?UTF-8?Q?Removed=20obsolete=20libobjc=5Fentry.c=20file=20from=20libobjc?= From: "Nicola Pero" To: gcc-patches@gnu.org MIME-Version: 1.0 X-Type: plain Message-ID: <1285512325.056532462@192.168.2.228> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4-2.6 X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org I removed the obsolete libobjc_entry.c file from libobjc. Committed to trunk. Thanks Index: libobjc_entry.c =================================================================== --- libobjc_entry.c (revision 164632) +++ libobjc_entry.c (working copy) @@ -1,54 +0,0 @@ -/* GNU Objective C Runtime DLL Entry - Copyright (C) 1997, 2009 Free Software Foundation, Inc. - Contributed by Scott Christley - -This file is part of GCC. - -GCC 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 3, or (at your option) any -later version. - -GCC 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. - -Under Section 7 of GPL version 3, you are granted additional -permissions described in the GCC Runtime Library Exception, version -3.1, as published by the Free Software Foundation. - -You should have received a copy of the GNU General Public License and -a copy of the GCC Runtime Library Exception along with this program; -see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -. */ - -#include "objc-private/common.h" -#include - -/* - DLL entry function for Objective-C Runtime library - This function gets called everytime a process/thread attaches to DLL - */ -WINBOOL WINAPI DllMain(HANDLE hInst, ULONG ul_reason_for_call, - LPVOID lpReserved) -{ - switch(ul_reason_for_call) - { - case DLL_PROCESS_ATTACH: - break; - case DLL_PROCESS_DETACH: - break; - case DLL_THREAD_ATTACH: - break; - case DLL_THREAD_DETACH: - break; - } - return TRUE; -} - -/* - This section terminates the list of imports under GCC. If you do not - include this then you will have problems when linking with DLLs. - */ -asm (".section .idata$3\n" ".long 0,0,0,0,0,0,0,0"); Index: ChangeLog =================================================================== --- ChangeLog (revision 164632) +++ ChangeLog (working copy) @@ -1,3 +1,7 @@ +2010-09-26 Nicola Pero + + * libobjc_entry.c: File removed. + 2010-09-26 Kai Tietz * sendmsg.c (get_imp): Remove inline.