diff options
author | ahl <none@none> | 2006-09-19 16:29:20 -0700 |
---|---|---|
committer | ahl <none@none> | 2006-09-19 16:29:20 -0700 |
commit | 2b6e762c557496a41438c0b105d604f60c593682 (patch) | |
tree | d2b6b9529da4f0bc18f1bf902a2cd4e4cf23ce11 /usr/src/lib/libdtrace/common/dt_strtab.h | |
parent | c6939658adb0a356a77bc28f7df252ceb4a8f6cc (diff) | |
download | illumos-gate-2b6e762c557496a41438c0b105d604f60c593682.tar.gz |
6282214 Byte Ordering Functions in libdtrace
6353438 syscall arguments past the 5th are incorrect
6432394 some sort of #define to denote the availability of USDT
6435862 dtrace -G can generate malformed string tables
6443592 dtrace(1M) leaves a breakpoint in rtld_db_dlactivity on error
6455174 assertion failed: new_pc != 0, file: ../../intel/dtrace/fasttrap_isa.c, line: 1606
6456626 dtrace -G should be able to 'guess' output format
6461522 Availability of dummy-macros for USDT probes in non-DTrace-supported environments
6462995 the syscall provider truncates return values on 32-bit x86 kernels
6465195 assertion failed: -1 <= rmindex && rmindex < tp->ftt_size
6472119 fasttrap should optimize the nop case on x86
6472121 dtest.pl should use the right compilers
Diffstat (limited to 'usr/src/lib/libdtrace/common/dt_strtab.h')
-rw-r--r-- | usr/src/lib/libdtrace/common/dt_strtab.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/usr/src/lib/libdtrace/common/dt_strtab.h b/usr/src/lib/libdtrace/common/dt_strtab.h index 1f0b2912c1..551dabbf67 100644 --- a/usr/src/lib/libdtrace/common/dt_strtab.h +++ b/usr/src/lib/libdtrace/common/dt_strtab.h @@ -2,9 +2,8 @@ * CDDL HEADER START * * The contents of this file are subject to the terms of the - * Common Development and Distribution License, Version 1.0 only - * (the "License"). You may not use this file except in compliance - * with the License. + * Common Development and Distribution License (the "License"). + * You may not use this file except in compliance with the License. * * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE * or http://www.opensolaris.org/os/licensing. @@ -19,8 +18,9 @@ * * CDDL HEADER END */ + /* - * Copyright 2004 Sun Microsystems, Inc. All rights reserved. + * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -58,6 +58,7 @@ typedef ssize_t dt_strtab_write_f(const char *, size_t, size_t, void *); extern dt_strtab_t *dt_strtab_create(size_t); extern void dt_strtab_destroy(dt_strtab_t *); +extern ssize_t dt_strtab_index(dt_strtab_t *, const char *); extern ssize_t dt_strtab_insert(dt_strtab_t *, const char *); extern size_t dt_strtab_size(const dt_strtab_t *); extern ssize_t dt_strtab_write(const dt_strtab_t *, |