awesome-repositories.com
博客
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目关于排名机制媒体报道MCP 服务器
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

2 个仓库

Awesome GitHub RepositoriesDeferred Notification Queues

Queues that defer action notifications to prevent recursive call overflows during execution.

Distinct from Message Queues: Specifically addresses the prevention of recursive stack overflows in smart contracts via deferred execution, not general message sequencing.

Explore 2 awesome GitHub repositories matching devops & infrastructure · Deferred Notification Queues. Refine with filters or upvote what's useful.

Awesome Deferred Notification Queues GitHub Repositories

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • eosio/eosEOSIO 的头像

    EOSIO/eos

    11,189在 GitHub 上查看↗

    EOS is a Layer 1 blockchain infrastructure and high-throughput transaction engine. It serves as a WebAssembly smart contract platform that manages state transitions and network consensus across a peer-to-peer network. The system utilizes a sandboxed virtual machine for executing smart contract logic and employs a Byzantine Fault Tolerant delegated proof-of-stake consensus mechanism to finalize the global ledger state. It features a resource-based stake model for CPU and memory allocation and an asynchronous messaging system for inter-contract communication to prevent recursive call overflows.

    Triggers inter-contract actions using an asynchronous queue to prevent recursive call overflows.

    C++eosio
    在 GitHub 上查看↗11,189
  • sel4/sel4seL4 的头像

    seL4/seL4

    5,583在 GitHub 上查看↗

    seL4 is a formally verified microkernel whose C implementation is backed by machine-checked mathematical proofs of correctness, confidentiality, integrity, and availability. It enforces strict isolation between processes through hardware-enforced address space separation and a capability-based access control system, where each process holds explicit rights only to the resources it has been granted. The kernel exposes hardware resources through a minimal API of system calls that manage threads, address spaces, and inter-process communication, with synchronous IPC supporting sender-identifying b

    Provides kernel mechanism to defer interrupt acknowledgements and notifications until after entry point return.

    Cmicrokernelossel4
    在 GitHub 上查看↗5,583
  1. Home
  2. DevOps & Infrastructure
  3. Queue Management
  4. Message Queues
  5. Deferred Notification Queues

探索子标签

  • Deferred Interrupt AcknowledgementsQueues interrupt acknowledgements and notifications to be sent after the current kernel entry point returns. **Distinct from Deferred Notification Queues:** Distinct from Deferred Notification Queues: focuses on kernel-level interrupt acknowledgement deferral, not smart contract notification deferral.