码迷,mamicode.com
首页 >  
搜索关键字:hierarchical mutex    ( 1231个结果
同一个PC只能运行一个应用实例(考虑多个用户会话情况)
1 class Program 2 { 3 private static Mutex m; 4 5 [STAThread] 6 static void Main() 7 { 8 bool createNew = fals...
分类:其他好文   时间:2015-03-05 18:48:05    阅读次数:144
RT-thread内核之互斥量
一、互斥量控制块:在include/rtdef.h中#ifdef RT_USING_MUTEX/** * Mutual exclusion (mutex) structure */struct rt_mutex{ struct rt_ipc_object parent; ...
分类:其他好文   时间:2015-03-04 18:35:59    阅读次数:187
聚类——混合高斯模型 Gaussian Mixture Model
转自: http://blog.csdn.net/jwh_bupt/article/details/7663885聚类系列:聚类(序)----监督学习与无监督学习聚类(1)----混合高斯模型 Gaussian Mixture Model 聚类(2)----层次聚类 Hierarchical Clu...
分类:其他好文   时间:2015-03-04 16:34:38    阅读次数:144
Semaphore built from mutex in C++11
#include #include using namespace std;class semaphore{private: mutex mtx; condition_variable cv; int count;public: semaphore(int count_ = ...
分类:编程语言   时间:2015-03-04 14:17:27    阅读次数:145
C#如何判断我的程序已经有一个实例正在运行
1 static class Program 2 { 3 private static Mutex mutex; 4 /// 5 /// 应用程序的主入口点。 6 /// 7 [STAThread]...
分类:Windows程序   时间:2015-03-03 11:17:42    阅读次数:152
cursor: pin S
cursor: pin S OTN 解释如下:   cursor: pin SA session waits on this event when it wants to update a shared mutex pin and another session is currently in the process of updating a shared mutex pin f...
分类:其他好文   时间:2015-02-28 21:42:53    阅读次数:147
hdu1520Anniversary party(比poj 2342数据强一些)
Problem Description There is going to be a party to celebrate the 80-th Anniversary of the Ural State University. The University has a hierarchical structure of employees. It means that the superviso...
分类:其他好文   时间:2015-02-25 18:44:53    阅读次数:143
Dynamics CRM 2015 New Feature (3): Hierarchical Security Model
Hierarchical Security Mode是个具有颠覆性的feature,它的出现完全颠覆了传统的Dynamics CRM Security管理概念。它为用户提供一个基于树形结构(组织管理图)来控制用户对记录的访问控制。使用这种权限控制机制,我们可以非常灵活的控制一些比较复杂场景的业务访问,比如:如果访问跨business unit的记录等。在这之前,如果我们想要访问跨BU的记录,我们需要借助于Team或Access Team。但是今天,我们只需要2布就能实现:1)开启Hierarchical S...
分类:其他好文   时间:2015-02-22 19:38:21    阅读次数:161
Dynamics CRM 2015 New Feature (2): Hierarchical Data
在Dynamics CRM 2015中引入了一个比较有意思的Feature:Hierarchical Data。用户可以用直观的树形图来了解具有树形结构的数据,例如business unit,相信通过这样一个有意思的feature,能给大家提高不少的工作效率。...
分类:其他好文   时间:2015-02-22 18:31:25    阅读次数:169
Linux多线程实践(8) --Posix条件变量解决生产者消费者问题
Posix条件变量int pthread_cond_init(pthread_cond_t *cond, pthread_condattr_t *cond_attr); int pthread_cond_destroy(pthread_cond_t *cond); int pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex...
分类:编程语言   时间:2015-02-19 18:39:58    阅读次数:261
1231条   上一页 1 ... 95 96 97 98 99 ... 124 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!