diff options
-rw-r--r-- | bignum.c | 2 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | gc.c | 4 | ||||
-rw-r--r-- | sparc.c | 4 | ||||
-rw-r--r-- | time.c | 2 | ||||
-rw-r--r-- | vm_dump.c | 4 |
6 files changed, 9 insertions, 9 deletions
@@ -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) diff --git a/configure.ac b/configure.ac index c856aa4484..cbc53231d8 100644 --- a/configure.ac +++ b/configure.ac @@ -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 ]) @@ -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 <[email protected]> */ @@ -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. @@ -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 @@ -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; |