ChinaUnix.net
相关文章推荐:

swtich 网口

http://www.cisco.com/en/US/products/ps6446/tsd_products_support_series_home.html http://www.cisco.com/global/CN/solutions/products_netsol/datacenter/products/mds/mds_data_12.shtml http://www.cisco.com/global/CN/solutions/products_netsol/datacenter/products/mds/mds_data_4.shtml http://china.emc.com/products/networking/connectrix/connectrix_switches.jsp http://www.brocadechina.com/products/switches...

by shinelian - 存储文档中心 - 2006-11-29 17:37:04 阅读(1010) 回复(0)

相关讨论

EXEC SQL BEGIN DECLARE SECTION; VARCHAR mesID[20]; EXEC SQL END DECLARE SECTION; strcpy((char *)mesID.arr, messageID); mesID.len = strlen((char *)mesID.arr); switch (mesID) { case 'MLL331': break; } 如何实现字符串的写法 。switch如何写

by lcq6075217 - C/C++ - 2010-01-06 13:15:39 阅读(4217) 回复(10)

linux内核进程切换最重要的一个部分就是宏定义switch_to,下面从几个方面来详细讲解一下: (1)内嵌汇编 (2)memory 破坏描述符(编译器优化) (3)进程切换的标志是什么? (4)堆栈切换的标志是什么? (5)为什么switch_to 提供了三个参数? (6)汇编参数的传递? 带着这几个问题,先来大体浏览一下代码 #define switch_to(prev, next, last) \ do { \ /* \ * Context-switching clobbers(彻底击败) all regist...

by liujunwei1234 - Linux文档专区 - 2009-05-03 18:55:03 阅读(811) 回复(0)

Extreme Alpine 3808 Full 3 Layer Switch(64 Gbps BandWidth)!!! Full 3 Layer Switch(64 Gbps BandWidth)!!! Configure: 1 x (45080) Alpine 3808 9-slot Chassis 1 x (45013) Fan Tray 1 x (45024) SMMi 5 x (45210) FM-32Ti 160 Ports 2 x (45012) AC Power Supply Performance: - 64 Gbps switch fabric bandwidth - 48 Mpps forwarding rate - 128K MAC addresses - 4096 VLANs **********************...

by solarisun - 网络技术 - 2005-08-28 20:01:21 阅读(916) 回复(1)

int i=1; switch(i) { case 0: printf("0\n"); case 1: printf("1\n"); case 2: printf("2\n"); default: printf("default\n"); } gcc下结果输出竟然是12default?!

by registcn - C/C++ - 2014-09-04 17:47:45 阅读(1705) 回复(5)

我想用软件来监控络状况和设备,如果出现异常能够报警并发送email,特别是如果络中出现过多广播包的时候能够及时发现。研究了nagios,cacti和munin等监测工具,没有找到合适的plugins。请问各位是如何解决这个问题的?多谢!

思科网络技术

by dreammaker - 网络技术 - 2009-12-02 09:21:11 阅读(2267) 回复(8)

我想用软件来监控络状况和设备,如果出现异常能够报警并发送email,特别是如果络中出现过多广播包的时候能够及时发现。研究了nagios,cacti和munin等监测工具,没有找到合适的plugins。请问各位是如何解决这个问题的?多谢!

by dreammaker - 企业网管技术交流区 - 2009-12-02 09:21:11 阅读(3179) 回复(5)

内敛汇编版本的switch_to #define switch_to(prev, next, last) \ do { \ /* \ * Context-switching clobbers(彻底击败) all registers, so we clobber \ * them explicitly, via unused output variables. \ * (EAX and EBP is not listed because EBP is saved/restored \ * explicitly for wchan access and EAX is the return value of \ * __switch_to()) \ */ \ unsigned lon...

by liujunwei1234 - 内核源码 - 2009-05-05 08:53:15 阅读(900) 回复(0)

linux内核进程切换最重要的一个部分就是宏定义switch_to,下面从几个方面来详细讲解一下: (1)内嵌汇编 (2)memory 破坏描述符(编译器优化) (3)进程切换的标志是什么? (4)堆栈切换的标志是什么? (5)为什么switch_to 提供了三个参数? (6)汇编参数的传递? 带着这几个问题,先来大体浏览一下代码 #define switch_to(prev, next, last) \ do { \ /* \ * Context-switching clobbers(彻底击败) all registers...

by liujunwei1234 - 内核源码 - 2011-05-07 20:48:05 阅读(7006) 回复(6)