1
0
Fork 0
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:
S-H-GAMELINKS 2022-04-09 16:53:13 +09:00 committed by Hiroshi SHIBATA
parent 83aeec8acf
commit 5b467400d2
Notes: git 2022-04-09 17:44:16 +09:00
6 changed files with 9 additions and 9 deletions

View file

@ -1573,7 +1573,7 @@ rb_big_mul_normal(VALUE x, VALUE y)
/* efficient squaring (2 times faster than normal multiplication) /* efficient squaring (2 times faster than normal multiplication)
* ref: Handbook of Applied Cryptography, Algorithm 14.16 * 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 static void
bary_sq_fast(BDIGIT *zds, size_t zn, const BDIGIT *xds, size_t xn) bary_sq_fast(BDIGIT *zds, size_t zn, const BDIGIT *xds, size_t xn)

View file

@ -2448,7 +2448,7 @@ AC_CHECK_TYPES([sig_t],[],[],[@%:@include <signal.h>])
AS_IF([test "$ac_cv_func_getpgid" = no], [ AS_IF([test "$ac_cv_func_getpgid" = no], [
# AC_FUNC_GETPGRP fails when cross-compiling with old autoconf. # AC_FUNC_GETPGRP fails when cross-compiling with old autoconf.
# autoconf is changed between 2.52d and 2.52f? # 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" # "autoconf cleanup for AC_FUNC_GETPGRP and GETPGRP_VOID"
AC_FUNC_GETPGRP AC_FUNC_GETPGRP
]) ])

4
gc.c
View file

@ -1275,7 +1275,7 @@ static const char *obj_type_name(VALUE obj);
/* the following code is only for internal tuning. */ /* the following code is only for internal tuning. */
/* Source code to use RDTSC is quoted and modified from /* 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> * 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 * a non-NULL pointer when its argument is 0. That return value
* is safe (and is expected) to be passed to free(). * 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 * - As I read the implementation jemalloc's malloc() returns fully
* normal 16 bytes memory region when its argument is 0. * normal 16 bytes memory region when its argument is 0.

View file

@ -7,7 +7,7 @@
window of the process executing the instruction will not be flushed window of the process executing the instruction will not be flushed
correctly. correctly.
See http://bugs.ruby-lang.org/issues/5244 for discussion. See https://bugs.ruby-lang.org/issues/5244 for discussion.
*********************************************************************/ *********************************************************************/
void void
rb_sparc_flush_register_windows(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 * gcc doesn't provide "asm" keyword if -ansi and the various -std options
* are given. * are given.
* http://gcc.gnu.org/onlinedocs/gcc/Alternate-Keywords.html * https://gcc.gnu.org/onlinedocs/gcc/Alternate-Keywords.html
*/ */
#ifndef __GNUC__ #ifndef __GNUC__
#define __asm__ asm #define __asm__ asm

2
time.c
View file

@ -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. * 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. * This table finds the last month which starts at the same day of a week.
* The year 2037 is not used because: * 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 * #!/usr/bin/ruby
* *

View file

@ -507,8 +507,8 @@ darwin_sigtramp:
char vec[1]; char vec[1];
int r; int r;
/* get previous frame information from %rbx at _sigtramp and set values to cursor /* 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 * https://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/libunwind/libunwind-35.1/src/unw_getcontext.s
*/ */
unw_get_reg(&cursor, UNW_X86_64_RBX, &ip); unw_get_reg(&cursor, UNW_X86_64_RBX, &ip);
uctx = (ucontext_t *)ip; uctx = (ucontext_t *)ip;