Unix-Center.Net的存储服务器自2007年7 月22日起正式投入使用。存储服务器投入使用后,本站所有服务器均使用统一的存储系统,用户无需将同一份数据重复上载到不同的服务器上。在2007年7 月22日之前单独存放在T1000/Solaris系统上的用户数据,在此次系统升级中统一迁移到用户家目录的t1000子目录下。
此外,所有注册用户的磁盘配额统一调整为100 MB(在此之前所有注册用户的磁盘配额为20 MB)。
Unix-Center.Net致力于为所有Unix/Linux爱好者提供多种不同的软硬件系统供学习和测试使用。目前我们提供的处理器包括UltraSparc T1,x86/x64,和龙芯2E;操作系统包括Solaris, FreeBSD, Fedora, Ubuntu以及Debian Linux for MIPS。
如果您在使用过程中遇到任何问题,请到Unix-Center.Net论坛的SYSOP 版面提出。
感谢您对Unix-Center.Net的支持。
阅读全文>
发表于 @ 2007年07月24日 11:32:00|评论(loading...)|编辑|收藏
What is your favourite debugger? If you would ask me this question, I would probably reply that it is “Visual Studio + WinDbg”. I like Visual Studio for its natural and productive interface. I like that it allows me to get the necessary information quickly and, well, visually. But unfortunately, some kinds of information cannot be easily obtained with Visual Studio debugger. For example, what if I need to know which thread is holding a particular critical section? Or which function occupies most阅读全文>
发表于 @ 2007年06月19日 19:56:00|评论(loading...)|编辑|收藏
在Windows开发环境下,没有直接提供gcc编译器,所以需要从自己去下载WINDOWS版本的gcc编译器.Windows下有cygwin, devcpp, djgpp等工具都带有gcc编译器.但是djgpp最小,而且可以产生最单纯的binary代码,所以很多关于操作系统编写的网站上都推荐使用djgpp.
阅读全文>
发表于 @ 2006年01月23日 22:46:00|评论(loading...)|编辑|收藏
CLCD 1.1 it is, so I grabbed the source ball.
I downloaded eMbedded VC 4.0 from microsoft, and gave it a go at compiling the KVM. Right out of the tar ball, I got a few compile errors, which were missing dependencies: nativeFunctionTableWin.c ROMjavaWin.c
These files live in the tools/jcc directory, according to the dependency information, so I dove into that directory. In that directory, surprise, is a Makefile.
So I open up the make file and find that I need to generate those files, but it阅读全文>
发表于 @ 2005年12月01日 09:16:00|评论(loading...)|编辑|收藏
很早就想写篇帖子来讲述自己做了近半年研究工作的心得,这次趁着2001级的各位准备本科毕业设计
的机会,来讲一下自己对于如何做研究的经验, 也希望各位抛砖引玉, 不要再走前人的弯路.
阅读全文>
发表于 @ 2005年01月25日 00:13:00|评论(loading...)|编辑|收藏
在Windows 2000 环境下,创建一个包含n 个线程的控制台进程。用这n 个线程来表示n
个读者或写者。每个线程按相应测试数据文件的要求,进行读写操作。请用信号量机制分别
实现写者优先的读者-写者问题。
阅读全文>
发表于 @ 2004年12月11日 23:05:00|评论(loading...)|编辑|收藏
在Windows 2000 环境下,创建一个包含n 个线程的控制台进程。用这n 个线程来表示n
个读者或写者。每个线程按相应测试数据文件的要求,进行读写操作。请用信号量机制分别
实现读者优先和写者优先的读者-写者问题。
阅读全文>
发表于 @ 2004年12月11日 22:59:00|评论(loading...)|编辑|收藏
在Windows 2000 环境下,创建一个包含n 个线程的控制台进程。用这n 个线程来表示n
个读者或写者。每个线程按相应测试数据文件的要求,进行读写操作。请用信号量机制分别
实现读者优先和写者优先的读者-写者问题。
读者-写者问题的读写操作限制:
1)写-写互斥;
2)读-写互斥;
3)读-读允许;阅读全文>
发表于 @ 2004年11月26日 13:39:00|评论(loading...)|编辑|收藏