代码搜索:SYNCHRONIZATION
找到约 1,570 项符合「SYNCHRONIZATION」的源代码
代码结果 1,570
www.eeworm.com/read/110505/15532420
h synchlist.h
// synchlist.h
// Data structures for synchronized access to a list.
//
// Implemented by surrounding the List abstraction
// with synchronization routines.
//
// Copyright (c) 1992-1993 The Regents
www.eeworm.com/read/287180/8711880
java pipedmessagepassing.java
package Synchronization;
import java.net.*;
import java.io.*;
// like a bounded buffer with multiple producers and consumers
public final class PipedMessagePassing extends MessagePassingRoot {
p
www.eeworm.com/read/287180/8711895
java establishrendezvous.java
package Synchronization;
import java.net.*;
import java.io.*;
import Utilities.*;
public class EstablishRendezvous extends MyObject {
/*
* Objects of this class are used as places to establish a
www.eeworm.com/read/287180/8711923
java clientserver.java
import Utilities.*;
import Synchronization.*;
class AdvMessage extends MyObject{
private String fromWhom = null;
private String appMethod = null;
public AdvMessage(String fromWhom,String a
www.eeworm.com/read/181788/9236980
txt readme_synchronizedemo.txt
FILE LIST -
synchronizeDemo.c
DESCRIPTION -
This demo demonstrates the intertask synchronization using binary
semaphores.
It creates two (semId1 and semId2) binary
www.eeworm.com/read/139738/13136986
java condition2.java
package nachos.threads;
import nachos.machine.*;
/**
* An implementation of condition variables that disables interrupt()s for
* synchronization.
*
*
* You must implement this.
*
* @see n
www.eeworm.com/read/325022/13232570
m timing_syn.m
%File:timing_syn.m timing synchronization
clc
clear
Data_Len = 5000;
Fs = 9600; % Sampling Frequency
Fd = 2400; % Symbol Frequency
SNR = 30;
www.eeworm.com/read/321818/13398082
m timing_syn_gardner.m
%File:timing_syn.m timing synchronization
clc
clear
Data_Len = 5000;
Fs = 9600; % Sampling Frequency
Fd = 2400; % Symbol Frequency
SNR = 30;
www.eeworm.com/read/311995/13620411
m timing_syn.m
%File:timing_syn.m timing synchronization
clc
clear
Data_Len = 5000;
Fs = 9600; % Sampling Frequency
Fd = 2400; % Symbol Frequency
SNR = 30;
www.eeworm.com/read/149476/5699093
h crossthreadprogress.h
// CrossThreadProgress.h
#ifndef __CROSSTHREADPROGRESS_H
#define __CROSSTHREADPROGRESS_H
#include "../../ICoder.h"
#include "../../../Windows/Synchronization.h"
#include "../../../Common/MyCo