# # ChangeLog for uspace/lib/math/Makefile in mainline # # Generated by Trac 1.6 # 2024-12-05T12:18:55Z Thu, 06 Mar 2014 02:45:53 GMT Martin Decky [ba11ebb] * uspace/lib/math/Makefile (modified) * uspace/lib/math/arch/abs32le/include/libarch/math.h (modified) * uspace/lib/math/arch/amd64/include/libarch/math.h (modified) * uspace/lib/math/arch/arm32/include/libarch/math.h (modified) * uspace/lib/math/arch/ia32/include/libarch/math.h (modified) * uspace/lib/math/arch/ia64/include/libarch/math.h (modified) * uspace/lib/math/arch/mips32/include/libarch/math.h (modified) * uspace/lib/math/arch/mips32eb/include/libarch/math.h (modified) * uspace/lib/math/arch/mips64/include/libarch/math.h (modified) * uspace/lib/math/arch/ppc32/include/libarch/math.h (modified) * uspace/lib/math/arch/sparc32/include/libarch/math.h (modified) * uspace/lib/math/arch/sparc64/include/libarch/math.h (modified) * uspace/lib/math/generic/mod.c (added) * uspace/lib/math/generic/trig.c (added) * uspace/lib/math/include/math.h (modified) * uspace/lib/math/include/mod.h (added) * uspace/lib/math/include/trig.h (added) implement generic sine and cosine functions using Taylor series ... Sat, 01 Mar 2014 23:03:21 GMT Martin Decky [d9be488] * HelenOS.config (modified) * uspace/Makefile.common (modified) * uspace/app/tester/Makefile (modified) * uspace/app/tester/float/float2.c (added) * uspace/app/tester/float/float2.def (added) * uspace/app/tester/tester.c (modified) * uspace/app/tester/tester.h (modified) * uspace/app/vdemo/Makefile (modified) * uspace/app/viewer/Makefile (modified) * uspace/app/vlaunch/Makefile (modified) * uspace/app/vterm/Makefile (modified) * uspace/lib/math/Makefile (modified) * uspace/lib/math/arch/abs32le/Makefile.inc (added) * uspace/lib/math/arch/abs32le/include/libarch/math.h (added) * uspace/lib/math/arch/amd64/Makefile.inc (added) * uspace/lib/math/arch/amd64/include/libarch/math.h (moved) * uspace/lib/math/arch/amd64/include/libarch/x87.h (added) * uspace/lib/math/arch/amd64/src/cos.S (added) * uspace/lib/math/arch/amd64/src/sin.S (added) * uspace/lib/math/arch/amd64/src/trunc.S (added) * uspace/lib/math/arch/arm32/Makefile.inc (added) * uspace/lib/math/arch/arm32/include/libarch/math.h (added) * uspace/lib/math/arch/ia32/Makefile.inc (added) * uspace/lib/math/arch/ia32/include/libarch/math.h (added) * uspace/lib/math/arch/ia32/include/libarch/x87.h (added) * uspace/lib/math/arch/ia32/src/cos.S (added) * uspace/lib/math/arch/ia32/src/sin.S (added) * uspace/lib/math/arch/ia32/src/trunc.S (added) * uspace/lib/math/arch/ia64/Makefile.inc (added) * uspace/lib/math/arch/ia64/include/libarch/math.h (added) * uspace/lib/math/arch/mips32/Makefile.inc (added) * uspace/lib/math/arch/mips32/include/libarch/math.h (added) * uspace/lib/math/arch/mips32eb/Makefile.inc (added) * uspace/lib/math/arch/mips32eb/include/libarch/math.h (added) * uspace/lib/math/arch/mips64/Makefile.inc (added) * uspace/lib/math/arch/mips64/include/libarch/math.h (added) * uspace/lib/math/arch/ppc32/Makefile.inc (added) * uspace/lib/math/arch/ppc32/include/libarch/math.h (added) * uspace/lib/math/arch/sparc32/Makefile.inc (added) * uspace/lib/math/arch/sparc32/include/libarch/math.h (added) * uspace/lib/math/arch/sparc64/Makefile.inc (added) * uspace/lib/math/arch/sparc64/include/libarch/math.h (added) * uspace/lib/math/generic/trunc.c (added) * uspace/lib/math/include/math.h (moved) * uspace/lib/math/include/mathtypes.h (added) * uspace/lib/math/include/trunc.h (moved) * uspace/lib/math/src/dummy.c (deleted) * uspace/lib/softfloat/Makefile (modified) * uspace/lib/softfloat/sftypes.h (modified) * uspace/lib/softfloat/softfloat.c (modified) * uspace/lib/softrend/Makefile (modified) * uspace/srv/hid/compositor/Makefile (modified) refactor floating point support * implement IA-32 and AMD64 ... Mon, 16 Dec 2013 13:11:10 GMT Vojtech Horky [8620b2f] * uspace/Makefile (modified) * uspace/Makefile.common (modified) * uspace/lib/c/include/math.h (added) * uspace/lib/math/Makefile (added) * uspace/lib/math/src/dummy.c (added) * uspace/lib/posix/Makefile (modified) * uspace/lib/posix/include/posix/math.h (modified) * uspace/lib/posix/source/math.c (deleted) Move math functions into a separate library Their implementation is ...