ChinaUnix.net
相关文章推荐:

SMBus base address uninitialized

informix 安装到tbmonitor 时出现故障: tbinit:shmat[evnval][22]:shared memory base address illegal using 0*10080000,needs 0*80000000 tbinit fatal error in shared memory creation

by libo19680712 - Informix - 2011-03-09 12:51:55 阅读(4801) 回复(6)

相关讨论

最近需要通过smbus来读取一些信息,但是在一些机器上smbus好像被隐藏了.我google了好久就找到了一个linux内核得patch;我刚开始学习linux所以麻烦各位大牛解释一下 我想知道得是pci_read_config_word(dev, 0xF2, &val);读取得是这个设备得什么信息? 劳烦各位指点一下;不胜感激; Asus hides the smbus PCI bridge within the ICH2 or ICH4 southbridge on Asus P4B/P4PE mainboards. The attached patch adds a quirk to re-enab...

by haohao06 - 内核/嵌入技术 - 2006-04-21 10:10:06 阅读(1412) 回复(1)

运行下面的代码提示说: Use of uninitialized value $line in split at BLAST_result.pl line 25, line 3. Use of uninitialized value $line in pattern match (m//) at BLAST_result.pl line 26, line 3. Use of uninitialized value $line in pattern match (m//) at BLAST_result.pl line 26, line 3. Use of uninitialized value $query_src in pattern match (m//) at BLAST_result.pl line 39. Use of uni...

by 308happy - Perl - 2008-08-14 09:01:28 阅读(6145) 回复(3)

代码大致如下: use strict; use warnings; my $total = 0; foreach () {    my $temp=function($_); #接收一个函数的返回值        $total += $temp; } print "$total"; 运行的时候提示警告: Use of uninitialized value in addition (+) at..... 就是$total += $temp那一行 请问要怎么改才能不出现这个警告?不要告诉我是注释use warning:wink:

by 小公猫 - Perl - 2007-12-25 13:53:36 阅读(3831) 回复(7)

写了一段代码,如下: #!/usr/bin/perl -w open (NEWTXT, "C:/Documents and Settings/Administrator/My Documents/新建文本文档.ascii")||die "Cannot open this file:$!"; open (OUTPUT, ">C:/Documents and Settings/Administrator/My Documents/输出.ascii")||die "Cannot open the file match_Yeast_A1:$!"; @array=; foreach $array (@array) {if ($array=~/(\d+), (\d+)/) {$RT=$1; $intensity=$2;} print OUT...

by skybrain - Perl - 2007-10-24 09:46:31 阅读(2586) 回复(4)

用CPAN上的LIBSVM工具包,出现这个错误!!!!不知是为什么?哪位高人见过这个问题. 这条警告信息会在什么条件下产生啊? #!/usr/bin/perl -w use strict; use Algorithm::SVM; my $svm=Algorithm::SVM->new();

by jt74 - Perl - 2005-11-22 09:23:06 阅读(1667) 回复(5)

my code is: if (($telephon[$m] =~ /^\s+$/) ||($telephon[$m] =~ /^\*/) || ($telephon[$m] !~ /^\(/)) {next; } Result: Use of uninitialized value in pattern match (m//) at select.pl line 53. why??????????

by happyboy227 - Perl - 2003-08-25 15:45:02 阅读(1423) 回复(1)

下面程序在linux fc7 下用gcc编译 #include #include #include #include #include #include main(int argc,char * argv[] ) { int fd1,fd2,l; void * tp; char *path; char buf[50]; struct stat ps; path=buf; printf("enter a path:"); scanf("%s",path); printf("%s",argv[1]); fstat(fd1.&ps); if(fd1=(open(argv[1],O_RDONLY))==-1) {printf("error1");exit(1);}...

by shiyangb - C/C++ - 2007-12-13 21:16:02 阅读(1190) 回复(3)

我在用户的crontab里加了这样一个脚本: 1 * * * * sh /usr/local/bin/cron880_sqwen.sh >; /dev/null & 之后系统总是向我发这样的mail: Your "cron" job on sqwen sh /usr/local/bin/cron880_sqwen.sh >; /dev/null & produced the following output: stty: : No such device or address stty: : No such device or address 请问是怎么回事啊? 难道我的/dev/null不存在吗?可明明有的啊

by sqwen - Solaris - 2012-11-29 14:36:51 阅读(2649) 回复(5)

127.0.0.1. is so called loopback address. and i dont know what this address use for? can somebody help me to explain, thanks very much!

by nzq90 - 网络技术 - 2003-06-11 13:54:10 阅读(1458) 回复(2)

我知道网络上一台PC的MAC地址,根据MAC地址怎么得到这台PC的IP地址?请高手指点.

by - 内核/嵌入技术 - 2005-05-07 22:59:16 阅读(958) 回复(9)