From owner-svn-src-vendor@FreeBSD.ORG Fri Aug 16 19:33:37 2013 Return-Path: Delivered-To: svn-src-vendor@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id CCCFEAC7; Fri, 16 Aug 2013 19:33:37 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B90A12CC6; Fri, 16 Aug 2013 19:33:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r7GJXb7R024717; Fri, 16 Aug 2013 19:33:37 GMT (envelope-from delphij@svn.freebsd.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r7GJXbhI024716; Fri, 16 Aug 2013 19:33:37 GMT (envelope-from delphij@svn.freebsd.org) Message-Id: <201308161933.r7GJXbhI024716@svn.freebsd.org> From: Xin LI Date: Fri, 16 Aug 2013 19:33:37 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-vendor@freebsd.org Subject: svn commit: r254422 - vendor-sys/illumos/dist/uts/common/sys vendor/illumos/dist/common/ctf X-SVN-Group: vendor-sys MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-vendor@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the vendor work area tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Aug 2013 19:33:37 -0000 Author: delphij Date: Fri Aug 16 19:33:36 2013 New Revision: 254422 URL: http://svnweb.freebsd.org/changeset/base/254422 Log: Update vendor/illumos/dist and vendor-sys/illumos/dist to illumos-gate 14143:42d090a37218: Illumos DTrace issues: 3089 want ::typedef 3094 libctf should support removing a dynamic type 3095 libctf does not validate arrays correctly 3096 libctf does not validate function types correctly Modified: vendor-sys/illumos/dist/uts/common/sys/ctf_api.h Changes in other areas also in this revision: Modified: vendor/illumos/dist/common/ctf/ctf_create.c vendor/illumos/dist/common/ctf/ctf_error.c vendor/illumos/dist/common/ctf/ctf_impl.h vendor/illumos/dist/common/ctf/ctf_open.c Modified: vendor-sys/illumos/dist/uts/common/sys/ctf_api.h ============================================================================== --- vendor-sys/illumos/dist/uts/common/sys/ctf_api.h Fri Aug 16 19:27:29 2013 (r254421) +++ vendor-sys/illumos/dist/uts/common/sys/ctf_api.h Fri Aug 16 19:33:36 2013 (r254422) @@ -23,6 +23,9 @@ * Copyright 2005 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ +/* + * Copyright (c) 2012, Joyent, Inc. All rights reserved. + */ /* * This header file defines the interfaces available from the CTF debugger @@ -40,8 +43,6 @@ #ifndef _CTF_API_H #define _CTF_API_H -#pragma ident "%Z%%M% %I% %E% SMI" - #include #include #include @@ -223,6 +224,8 @@ extern int ctf_add_member(ctf_file_t *, extern int ctf_set_array(ctf_file_t *, ctf_id_t, const ctf_arinfo_t *); +extern int ctf_delete_type(ctf_file_t *, ctf_id_t); + extern int ctf_update(ctf_file_t *); extern int ctf_discard(ctf_file_t *); extern int ctf_write(ctf_file_t *, int);