This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/compiler/crystal/compiler.cr b/src/compiler/crystal/compiler.cr | |
index 38880ee9e..966e2f954 100644 | |
--- a/src/compiler/crystal/compiler.cr | |
+++ b/src/compiler/crystal/compiler.cr | |
@@ -523,13 +523,17 @@ module Crystal | |
private def fork_codegen(units, n_threads) | |
workers = fork_workers(n_threads) do |input, output| | |
while i = input.gets(chomp: true).presence | |
+ Crystal::System.print_error "CODEGEN pid=#{LibC.getpid} STDIN => #{i}\n" | |
unit = units[i.to_i] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class STW | |
def initialize | |
@running = true | |
@started = Atomic(Int32).new(0) | |
@count = Atomic(Int32).new(0) | |
@threads = [] of Thread | |
end | |
def start_thread | |
@threads << Thread.new do |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "json" | |
def cleanup_constant(type : JSON::Any) | |
type.as_h.select! do |key, _| | |
{ | |
"id", | |
"name", | |
"value", | |
"doc", | |
"summary", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "c/sys/time" | |
lib LibC | |
KQUEUE_CLOEXEC = O_CLOEXEC | |
# todo: constants | |
# EV_ADD = ... | |
# EV_ENABLE = ... | |
# ... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lib LibC | |
EPOLL_CLOEXEC = 0o2000000 | |
EPOLLIN = 0x001_u32 | |
EPOLLPRI = 0x002_u32 | |
EPOLLOUT = 0x004_u32 | |
EPOLLRDNORM = 0x040_u32 | |
EPOLLRDBAND = 0x080_u32 | |
EPOLLWRNORM = 0x100_u32 | |
EPOLLWRBAND = 0x200_u32 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "./data_layout" | |
# I must require the WHOLE COMPILER just to load crystal/types, and then it | |
# takes as long as compiling the compiler to compile just this file and to do | |
# nothing. | |
require "compiler/requires" | |
class Crystal::ABI | |
@nil_type : DataLayout::Aggregate? | |
@proc_type : DataLayout::Aggregate? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Bus(A, M) | |
include GenServer | |
def initialize | |
@listeners = [] of A | |
end | |
# public interface | |
def subscribe(listener : A) : Nil |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <errno.h> | |
#include <pthread.h> | |
#include <signal.h> | |
#include <stdatomic.h> | |
#include <stdlib.h> | |
#include <stdio.h> | |
#include <string.h> | |
#include <unistd.h> | |
#include <ucontext.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
commit 921120d96c175d997d815805bdeced4b4fbb0cfa (HEAD -> fix/transparently-rewrite-unauthenticated-github-url-to-https) | |
Author: Julien Portalier <[email protected]> | |
Date: Tue Apr 5 18:37:34 2022 +0200 | |
Fix: rewrite GitHub unauthenticated URL | |
Rewrites the URL on-the-fly and transparently from git://github.com | |
to https://github.com because GitHub no longer supports the | |
unauthenticated git protocol anymore. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# frozen_string_literal: true | |
require "fiber" | |
require "nio" | |
require "timers" | |
module Earl | |
class Scheduler | |
def initialize | |
@selector = NIO::Selector.new |
NewerOlder