Skip to content
View Youpen-y's full-sized avatar

Block or report Youpen-y

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. alloca (alloc on stack) vs malloc (a... alloca (alloc on stack) vs malloc (alloc on heap)
    1
    #include <stdio.h>
    2
    #include <stdlib.h>
    3
    #include <time.h>
    4
    
                  
    5
    int main(int argc, char **argv) {
  2. jiajia jiajia Public

    Forked from claudioscordino/jiajia

    JIAJIA is a Software Distributed Shared Memory (SDSM) system

    C 1

  3. atomic vs mutex vs semaphore cost co... atomic vs mutex vs semaphore cost comparsion
    1
    #include <stdio.h>
    2
    #include <stdlib.h>
    3
    #include <pthread.h>
    4
    #include <stdatomic.h>
    5
    #include <semaphore.h>
  4. RDMA RDMA Public

    一些库函数

    C