mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
[DOC]Some link prefix replace
This commit is contained in:
parent
83aeec8acf
commit
5b467400d2
Notes:
git
2022-04-09 17:44:16 +09:00
6 changed files with 9 additions and 9 deletions
2
bignum.c
2
bignum.c
|
@ -1573,7 +1573,7 @@ rb_big_mul_normal(VALUE x, VALUE y)
|
|||
|
||||
/* efficient squaring (2 times faster than normal multiplication)
|
||||
* ref: Handbook of Applied Cryptography, Algorithm 14.16
|
||||
* http://www.cacr.math.uwaterloo.ca/hac/about/chap14.pdf
|
||||
* https://www.cacr.math.uwaterloo.ca/hac/about/chap14.pdf
|
||||
*/
|
||||
static void
|
||||
bary_sq_fast(BDIGIT *zds, size_t zn, const BDIGIT *xds, size_t xn)
|
||||
|
|
|
@ -2448,7 +2448,7 @@ AC_CHECK_TYPES([sig_t],[],[],[@%:@include <signal.h>])
|
|||
AS_IF([test "$ac_cv_func_getpgid" = no], [
|
||||
# AC_FUNC_GETPGRP fails when cross-compiling with old autoconf.
|
||||
# autoconf is changed between 2.52d and 2.52f?
|
||||
# http://lists.gnu.org/archive/html/bug-gnu-utils/2001-09/msg00181.html
|
||||
# https://lists.gnu.org/archive/html/bug-gnu-utils/2001-09/msg00181.html
|
||||
# "autoconf cleanup for AC_FUNC_GETPGRP and GETPGRP_VOID"
|
||||
AC_FUNC_GETPGRP
|
||||
])
|
||||
|
|
4
gc.c
4
gc.c
|
@ -1275,7 +1275,7 @@ static const char *obj_type_name(VALUE obj);
|
|||
/* the following code is only for internal tuning. */
|
||||
|
||||
/* Source code to use RDTSC is quoted and modified from
|
||||
* http://www.mcs.anl.gov/~kazutomo/rdtsc.html
|
||||
* https://www.mcs.anl.gov/~kazutomo/rdtsc.html
|
||||
* written by Kazutomo Yoshii <kazutomo@mcs.anl.gov>
|
||||
*/
|
||||
|
||||
|
@ -11806,7 +11806,7 @@ objspace_xrealloc(rb_objspace_t *objspace, void *ptr, size_t new_size, size_t ol
|
|||
* a non-NULL pointer when its argument is 0. That return value
|
||||
* is safe (and is expected) to be passed to free().
|
||||
*
|
||||
* http://man7.org/linux/man-pages/man3/malloc.3.html
|
||||
* https://man7.org/linux/man-pages/man3/malloc.3.html
|
||||
*
|
||||
* - As I read the implementation jemalloc's malloc() returns fully
|
||||
* normal 16 bytes memory region when its argument is 0.
|
||||
|
|
4
sparc.c
4
sparc.c
|
@ -7,7 +7,7 @@
|
|||
window of the process executing the instruction will not be flushed
|
||||
correctly.
|
||||
|
||||
See http://bugs.ruby-lang.org/issues/5244 for discussion.
|
||||
See https://bugs.ruby-lang.org/issues/5244 for discussion.
|
||||
*********************************************************************/
|
||||
void
|
||||
rb_sparc_flush_register_windows(void)
|
||||
|
@ -15,7 +15,7 @@ rb_sparc_flush_register_windows(void)
|
|||
/*
|
||||
* gcc doesn't provide "asm" keyword if -ansi and the various -std options
|
||||
* are given.
|
||||
* http://gcc.gnu.org/onlinedocs/gcc/Alternate-Keywords.html
|
||||
* https://gcc.gnu.org/onlinedocs/gcc/Alternate-Keywords.html
|
||||
*/
|
||||
#ifndef __GNUC__
|
||||
#define __asm__ asm
|
||||
|
|
2
time.c
2
time.c
|
@ -1315,7 +1315,7 @@ static struct tm *localtime_with_gmtoff_zone(const time_t *t, struct tm *result,
|
|||
* compat_common_month_table is generated by the following program.
|
||||
* This table finds the last month which starts at the same day of a week.
|
||||
* The year 2037 is not used because:
|
||||
* http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=522949
|
||||
* https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=522949
|
||||
*
|
||||
* #!/usr/bin/ruby
|
||||
*
|
||||
|
|
|
@ -507,8 +507,8 @@ darwin_sigtramp:
|
|||
char vec[1];
|
||||
int r;
|
||||
/* get previous frame information from %rbx at _sigtramp and set values to cursor
|
||||
* http://www.opensource.apple.com/source/Libc/Libc-825.25/i386/sys/_sigtramp.s
|
||||
* http://www.opensource.apple.com/source/libunwind/libunwind-35.1/src/unw_getcontext.s
|
||||
* https://www.opensource.apple.com/source/Libc/Libc-825.25/i386/sys/_sigtramp.s
|
||||
* https://www.opensource.apple.com/source/libunwind/libunwind-35.1/src/unw_getcontext.s
|
||||
*/
|
||||
unw_get_reg(&cursor, UNW_X86_64_RBX, &ip);
|
||||
uctx = (ucontext_t *)ip;
|
||||
|
|
Loading…
Reference in a new issue