代码搜索:Memory
找到约 10,000 项符合「Memory」的源代码
代码结果 10,000
www.eeworm.com/read/147608/12542976
c memory4.c
#include
#include
#define ONE_K (1024)
int main() {
char *some_memory;
char *scan_ptr;
some_memory = (char *)malloc(ONE_K);
if (some_memory == NULL) exit(E
www.eeworm.com/read/147608/12543011
c memory5a.c
#include
#include
#include
int main() {
char *some_memory = (char *)0;
printf("A read from null %s\n", some_memory);
sprintf(some_memory, "A write to nul
www.eeworm.com/read/335198/12545857
h share_memory.h
/* share memory control function */
#ifndef __share_memory_h__
#define __share_memory_h__
#include
#include
#include
#include
#include
www.eeworm.com/read/335198/12545861
c share_memory.c
#include "share_memory.h"
/* create or get share memory */
void *shm_create(int key, unsigned long size, int *pshmid)
{
int shmid;
void *addr;
/*
int shmget(key_t key, int size, int flag
www.eeworm.com/read/248625/12549863
class memory$stopper.class
www.eeworm.com/read/248625/12549872
class memory$runner.class
www.eeworm.com/read/334950/12559823
h memory_t.h
/*
* Copyright (c) 2001 - 2005 NetGroup, Politecnico di Torino (Italy)
* Copyright (c) 2005 - 2006 CACE Technologies, Davis (California)
* All rights reserved.
*
* Redistribution and use in
www.eeworm.com/read/334836/12571015
h sexp_memory.h
/**
SFSEXP: Small, Fast S-Expression Library version 1.0
Written by Matthew Sottile (matt@lanl.gov)
Copyright (2004). The Regents of the University of California. This material
was produced under U
www.eeworm.com/read/334836/12571027
c sexp_memory.c
/**
SFSEXP: Small, Fast S-Expression Library version 1.0
Written by Matthew Sottile (matt@lanl.gov)
Copyright (2004). The Regents of the University of California. This material
was produced under U
www.eeworm.com/read/334090/12640491