diff options
| author | Andy Fiddaman <omnios@citrus-it.co.uk> | 2020-12-27 17:47:37 +0000 |
|---|---|---|
| committer | Andy Fiddaman <omnios@citrus-it.co.uk> | 2021-01-30 17:13:33 +0000 |
| commit | b30d193948be5a7794d7ae3ba0ed9c2f72c88e0f (patch) | |
| tree | 6a37e590faffb9bb9af66887de645c546445036c /usr/src/lib/libsum/sparcv9 | |
| parent | df36e06d12cbf655ddf22339ef8c39fa2b83ebf8 (diff) | |
| download | illumos-joyent-b30d193948be5a7794d7ae3ba0ed9c2f72c88e0f.tar.gz | |
13405 ksh93 update to 2012-08-01
13434 sh: mishandles backslash as last character of a block of input
11750 ksh mkdir builtin doesn't honor special file permissions
9199 ksh93 builtin *grep -v mishandles blank lines, blows up libgcrypt-config
6756 sh (and ksh) have issues with ${1+"$@"}
6520 ksh: sleep could wait forever
4860 ksh93: core in printf
3791 /bin/sh's builtin 'rm' busted: 'rm -f' without arguments returns error
1047 ksh overwrites child core files
880 ksh93 coredumps on 'unset'
499 "interrupted system call" when using "tee" builtin in ksh
Reviewed by: Robert Mustacchi <rm@fingolfin.org>
Reviewed by: Hans Rosenfeld <rosenfeld@grumpf.hope-2000.org>
Reviewed by: Dominik Hassler <hadfl@omnios.org>
Approved by: Rich Lowe <richlowe@richlowe.net>
Diffstat (limited to 'usr/src/lib/libsum/sparcv9')
| -rw-r--r-- | usr/src/lib/libsum/sparcv9/Makefile | 30 | ||||
| -rw-r--r-- | usr/src/lib/libsum/sparcv9/include/ast/sum.h | 74 | ||||
| -rw-r--r-- | usr/src/lib/libsum/sparcv9/src/lib/libsum/FEATURE/sum | 16 |
3 files changed, 0 insertions, 120 deletions
diff --git a/usr/src/lib/libsum/sparcv9/Makefile b/usr/src/lib/libsum/sparcv9/Makefile deleted file mode 100644 index 9f293be4fa..0000000000 --- a/usr/src/lib/libsum/sparcv9/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -# -# CDDL HEADER START -# -# The contents of this file are subject to the terms of the -# 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. -# See the License for the specific language governing permissions -# and limitations under the License. -# -# When distributing Covered Code, include this CDDL HEADER in each -# file and include the License file at usr/src/OPENSOLARIS.LICENSE. -# If applicable, add the following below this CDDL HEADER, with the -# fields enclosed by brackets "[]" replaced with your own identifying -# information: Portions Copyright [yyyy] [name of copyright owner] -# -# CDDL HEADER END -# - -# -# Copyright 2008 Sun Microsystems, Inc. All rights reserved. -# Use is subject to license terms. -# - -include ../Makefile.com -include ../../Makefile.lib.64 - -install: all $(ROOTLIBS64) $(ROOTLINKS64) diff --git a/usr/src/lib/libsum/sparcv9/include/ast/sum.h b/usr/src/lib/libsum/sparcv9/include/ast/sum.h deleted file mode 100644 index f82fee47d6..0000000000 --- a/usr/src/lib/libsum/sparcv9/include/ast/sum.h +++ /dev/null @@ -1,74 +0,0 @@ - -/* : : generated by proto : : */ -/*********************************************************************** -* * -* This software is part of the ast package * -* Copyright (c) 1996-2010 AT&T Intellectual Property * -* and is licensed under the * -* Common Public License, Version 1.0 * -* by AT&T Intellectual Property * -* * -* A copy of the License is available at * -* http://www.opensource.org/licenses/cpl1.0.txt * -* (with md5 checksum 059e8cd6165cb4c31e351f2b69388fd9) * -* * -* Information and Software Systems Research * -* AT&T Research * -* Florham Park NJ * -* * -* Glenn Fowler <gsf@research.att.com> * -* * -***********************************************************************/ - - -/* - * Glenn Fowler - * AT&T Research - * - * checksum library interface - */ - -#ifndef _SUM_H -#if !defined(__PROTO__) -#include <prototyped.h> -#endif -#if !defined(__LINKAGE__) -#define __LINKAGE__ /* 2004-08-11 transition */ -#endif - -#define _SUM_H - -#include <ast.h> - -#define SUM_SIZE (1<<0) /* print size too */ -#define SUM_SCALE (1<<1) /* traditional size scale */ -#define SUM_TOTAL (1<<2) /* print totals since sumopen */ -#define SUM_LEGACY (1<<3) /* legacy field widths */ - -#define _SUM_PUBLIC_ const char* name; - -typedef struct Sumdata_s -{ - uint32_t size; - uint32_t num; - __V_* buf; -} Sumdata_t; - -typedef struct Sum_s -{ - _SUM_PUBLIC_ -#ifdef _SUM_PRIVATE_ - _SUM_PRIVATE_ -#endif -} Sum_t; - -extern __MANGLE__ Sum_t* sumopen __PROTO__((const char*)); -extern __MANGLE__ int suminit __PROTO__((Sum_t*)); -extern __MANGLE__ int sumblock __PROTO__((Sum_t*, const __V_*, size_t)); -extern __MANGLE__ int sumdone __PROTO__((Sum_t*)); -extern __MANGLE__ int sumdata __PROTO__((Sum_t*, Sumdata_t*)); -extern __MANGLE__ int sumprint __PROTO__((Sum_t*, Sfio_t*, int, size_t)); -extern __MANGLE__ int sumusage __PROTO__((Sfio_t*)); -extern __MANGLE__ int sumclose __PROTO__((Sum_t*)); - -#endif diff --git a/usr/src/lib/libsum/sparcv9/src/lib/libsum/FEATURE/sum b/usr/src/lib/libsum/sparcv9/src/lib/libsum/FEATURE/sum deleted file mode 100644 index 6347c2a327..0000000000 --- a/usr/src/lib/libsum/sparcv9/src/lib/libsum/FEATURE/sum +++ /dev/null @@ -1,16 +0,0 @@ -/* : : generated from /home/gisburn/ksh93/ast_ksh_20100309/build_sparc_64bit/src/lib/libsum/features/sum by iffe version 2009-12-04 : : */ -#ifndef _def_sum_sum -#define _def_sum_sum 1 -#define _sys_types 1 /* #include <sys/types.h> ok */ -#define _LIB_ast 1 /* /home/gisburn/ksh93/ast_ksh_20100309/build_sparc_64bit/arch/sol11.sun4/lib/libast.a is a library */ -#define _LIB_m 1 /* -lm is a library */ -#define _hdr_md4 1 /* #include <md4.h> ok */ -#define _LIB_md 1 /* -lmd is a library */ -#define _lib_MD4Init 1 /* MD4Init() in default lib(s) */ -#define _hdr_md5 1 /* #include <md5.h> ok */ -#define _lib_MD5Init 1 /* MD5Init() in default lib(s) */ -#define _hdr_sha1 1 /* #include <sha1.h> ok */ -#define _lib_SHA1Init 1 /* SHA1Init() in default lib(s) */ -#define _hdr_sha2 1 /* #include <sha2.h> ok */ -#define _lib_SHA2Init 1 /* SHA2Init() in default lib(s) */ -#endif |
