Home | History | Annotate | Download | only in include
History log of /src/sys/arch/hppa/include/Makefile
RevisionDateAuthorComments
 1.16  30-Nov-2024  christos Create a new header lwp_private.h to contain _lwp_getprivate_fast,
_lwp_gettcb_fast, _lwp_settcb and remove them from mcontext.h, so that:
1. we don't need special hacks to hide them
2. we can include <lwp.h> where needed to get the necessary prototypes
without redefining them locally.
 1.15  04-Nov-2024  christos Undo previous lwp.h change.
 1.14  03-Nov-2024  christos Split __lwp_getprivate_fast and __lwp_*tcb from mcontext.h into a separate
lwp.h file.
 1.13  12-Jul-2018  maxv branches: 1.13.36;
Remove the kernel PMC code. Sent yesterday on tech-kern@.

This change:

* Removes "options PERFCTRS", the associated includes, and the associated
ifdefs. In doing so, it removes several XXXSMPs in the MI code, which is
good.

* Removes the PMC code of ARM XSCALE.

* Removes all the pmc.h files. They were all empty, except for ARM XSCALE.

* Reorders the x86 PMC code not to rely on the legacy pmc.h file. The
definitions are put in sysarch.h.

* Removes the kern/sys_pmc.c file, and along with it, the sys_pmc_control
and sys_pmc_get_info syscalls. They are marked as OBSOL in kern,
netbsd32 and rump.

* Removes the pmc_evid_t and pmc_ctr_t types.

* Removes all the associated man pages. The sets are marked as obsolete.
 1.12  27-Dec-2014  martin branches: 1.12.16; 1.12.18;
fenv(3) support for hppa
 1.11  24-Feb-2014  skrll branches: 1.11.4; 1.11.6;
Rename NetBSD/hp700 to NetBSD/hppa.

Unfortunately our VCS isn't very helpful here.
 1.10  17-Jul-2011  joerg branches: 1.10.2; 1.10.12; 1.10.16;
Retire varargs.h support. Move machine/stdarg.h logic into MI
sys/stdarg.h and expect compiler to provide proper builtins, defaulting
to the GCC interface. lint still has a special fallback.
Reduce abuse of _BSD_VA_LIST_ by defining __va_list by default and
derive va_list as required by standards.
 1.9  09-Feb-2007  ad Merge newlock2 to head.
 1.8  06-Feb-2007  skrll G/C hp{pa,700}/spinlock.h
 1.7  26-Jul-2006  drochner branches: 1.7.4;
don't install <machine/db_machdep.h>, this is kernel only
 1.6  11-Dec-2005  christos branches: 1.6.4; 1.6.8;
merge ktrace-lwp.
 1.5  08-May-2004  kleink branches: 1.5.12;
Factor out W{CHAR,INT}_{MAX,MIN} into their own header file.
 1.4  20-Sep-2003  matt Install <hppa/mcontext.h>
 1.3  26-Nov-2002  lukem branches: 1.3.6;
Remove KDIR=, since SYS_INCLUDE=symlinks and KDIR are not supported any more.
 1.2  07-Aug-2002  briggs Implement pmc(9) -- An interface to hardware performance monitoring
counters. These counters do not exist on all CPUs, but where they
do exist, can be used for counting events such as dcache misses that
would otherwise be difficult or impossible to instrument by code
inspection or hardware simulation.

pmc(9) is meant to be a general interface. Initially, the Intel XScale
counters are the only ones supported.
 1.1  05-Jun-2002  fredette branches: 1.1.2; 1.1.4;
Added files to support generic HP PA-RISC based machines. hp700-specific
files to follow.
 1.1.4.3  31-Aug-2002  gehenna catch up with -current.
 1.1.4.2  14-Jul-2002  gehenna catch up with -current.
 1.1.4.1  05-Jun-2002  gehenna file Makefile was added on branch gehenna-devsw on 2002-07-14 17:47:16 +0000
 1.1.2.3  06-Sep-2002  jdolecek sync kqueue branch with HEAD
 1.1.2.2  23-Jun-2002  jdolecek catch up with -current on kqueue branch
 1.1.2.1  05-Jun-2002  jdolecek file Makefile was added on branch kqueue on 2002-06-23 17:37:06 +0000
 1.3.6.3  21-Sep-2004  skrll Fix the sync with head I botched.
 1.3.6.2  18-Sep-2004  skrll Sync with HEAD.
 1.3.6.1  03-Aug-2004  skrll Sync with HEAD
 1.5.12.2  26-Feb-2007  yamt sync with head.
 1.5.12.1  30-Dec-2006  yamt sync with head.
 1.6.8.1  11-Aug-2006  yamt sync with head
 1.6.4.1  09-Sep-2006  rpaulo sync with head
 1.7.4.2  09-Feb-2007  ad Sync with HEAD.
 1.7.4.1  29-Jan-2007  ad Make hp700 compile.
 1.10.16.1  18-May-2014  rmind sync with head
 1.10.12.2  03-Dec-2017  jdolecek update from HEAD
 1.10.12.1  20-Aug-2014  tls Rebase to HEAD as of a few days ago.
 1.10.2.1  22-May-2014  yamt sync with head.

for a reference, the tree before this commit was tagged
as yamt-pagecache-tag8.

this commit was splitted into small chunks to avoid
a limitation of cvs. ("Protocol error: too many arguments")
 1.11.6.1  06-Apr-2015  skrll Sync with HEAD
 1.11.4.1  20-Jan-2015  snj Pull up following revision(s) (requested by martin in ticket #416):
distrib/sets/lists/comp/md.hppa: revision 1.3
include/fenv.h: revision 1.13 via patch
lib/libm/Makefile: revision 1.168
lib/libm/arch/hppa/fenv.c: revisions 1.1, 1.2
sys/arch/hppa/include/Makefile: revision 1.12
sys/arch/hppa/include/fenv.h: revisions 1.1, 1.2
sys/arch/hppa/include/ieeefp.h: revisions 1.5-1.7
tests/lib/libm/Makefile: revision 1.29 via patch
fenv(3) support for hppa
--
use unsigned over uint32_t so that this file works without stdint.h
being included before hand.
fixes mknative-gcc problems, and likely others.
--
Properly separate fenv.h and ieeefp.h by moving all fenv defines
over to the former.
Now that they are decoupled, make rounding modes match the hardware bits.
--
Simplify, now that rounding mode defines match the hardware bits.
 1.12.18.1  10-Jun-2019  christos Sync with HEAD
 1.12.16.1  28-Jul-2018  pgoyette Sync with HEAD
 1.13.36.1  02-Aug-2025  perseant Sync with HEAD

RSS XML Feed