G++ isn't compiling!

So, I noticed this yesterday, thinking it was application specific. Now I've tried compiling with multiple pieces of code that I've written, all of which compiled successfully at most a week ago. The following paste is from an attempt on a simple example (so as to minimize the amount to paste). I don't know what I did to cause this. Any ideas?
g++ -c main.cpp
In file included from main.cpp:1:0:
/usr/include/c++/4.8.1/cstdlib:118:11: error: ‘::div_t’ has not been declared
using ::div_t;
^
/usr/include/c++/4.8.1/cstdlib:119:11: error: ‘::ldiv_t’ has not been declared
using ::ldiv_t;
^
/usr/include/c++/4.8.1/cstdlib:121:11: error: ‘::abort’ has not been declared
using ::abort;
^
/usr/include/c++/4.8.1/cstdlib:122:11: error: ‘::abs’ has not been declared
using ::abs;
^
/usr/include/c++/4.8.1/cstdlib:123:11: error: ‘::atexit’ has not been declared
using ::atexit;
^
/usr/include/c++/4.8.1/cstdlib:129:11: error: ‘::atof’ has not been declared
using ::atof;
^
/usr/include/c++/4.8.1/cstdlib:130:11: error: ‘::atoi’ has not been declared
using ::atoi;
^
/usr/include/c++/4.8.1/cstdlib:131:11: error: ‘::atol’ has not been declared
using ::atol;
^
/usr/include/c++/4.8.1/cstdlib:132:11: error: ‘::bsearch’ has not been declared
using ::bsearch;
^
/usr/include/c++/4.8.1/cstdlib:133:11: error: ‘::calloc’ has not been declared
using ::calloc;
^
/usr/include/c++/4.8.1/cstdlib:134:11: error: ‘::div’ has not been declared
using ::div;
^
/usr/include/c++/4.8.1/cstdlib:135:11: error: ‘::exit’ has not been declared
using ::exit;
^
/usr/include/c++/4.8.1/cstdlib:136:11: error: ‘::free’ has not been declared
using ::free;
^
/usr/include/c++/4.8.1/cstdlib:137:11: error: ‘::getenv’ has not been declared
using ::getenv;
^
/usr/include/c++/4.8.1/cstdlib:138:11: error: ‘::labs’ has not been declared
using ::labs;
^
/usr/include/c++/4.8.1/cstdlib:139:11: error: ‘::ldiv’ has not been declared
using ::ldiv;
^
/usr/include/c++/4.8.1/cstdlib:140:11: error: ‘::malloc’ has not been declared
using ::malloc;
^
/usr/include/c++/4.8.1/cstdlib:142:11: error: ‘::mblen’ has not been declared
using ::mblen;
^
/usr/include/c++/4.8.1/cstdlib:143:11: error: ‘::mbstowcs’ has not been declared
using ::mbstowcs;
^
/usr/include/c++/4.8.1/cstdlib:144:11: error: ‘::mbtowc’ has not been declared
using ::mbtowc;
^
/usr/include/c++/4.8.1/cstdlib:146:11: error: ‘::qsort’ has not been declared
using ::qsort;
^
/usr/include/c++/4.8.1/cstdlib:152:11: error: ‘::rand’ has not been declared
using ::rand;
^
/usr/include/c++/4.8.1/cstdlib:153:11: error: ‘::realloc’ has not been declared
using ::realloc;
^
/usr/include/c++/4.8.1/cstdlib:154:11: error: ‘::srand’ has not been declared
using ::srand;
^
/usr/include/c++/4.8.1/cstdlib:155:11: error: ‘::strtod’ has not been declared
using ::strtod;
^
/usr/include/c++/4.8.1/cstdlib:156:11: error: ‘::strtol’ has not been declared
using ::strtol;
^
/usr/include/c++/4.8.1/cstdlib:157:11: error: ‘::strtoul’ has not been declared
using ::strtoul;
^
/usr/include/c++/4.8.1/cstdlib:158:11: error: ‘::system’ has not been declared
using ::system;
^
/usr/include/c++/4.8.1/cstdlib:160:11: error: ‘::wcstombs’ has not been declared
using ::wcstombs;
^
/usr/include/c++/4.8.1/cstdlib:161:11: error: ‘::wctomb’ has not been declared
using ::wctomb;
^
/usr/include/c++/4.8.1/cstdlib:168:10: error: ‘ldiv_t’ does not name a type
inline ldiv_t
^
/usr/include/c++/4.8.1/cstdlib:201:11: error: ‘::lldiv_t’ has not been declared
using ::lldiv_t;
^
/usr/include/c++/4.8.1/cstdlib:207:11: error: ‘::_Exit’ has not been declared
using ::_Exit;
^
/usr/include/c++/4.8.1/cstdlib:211:11: error: ‘::llabs’ has not been declared
using ::llabs;
^
/usr/include/c++/4.8.1/cstdlib:213:10: error: ‘lldiv_t’ does not name a type
inline lldiv_t
^
/usr/include/c++/4.8.1/cstdlib:217:11: error: ‘::lldiv’ has not been declared
using ::lldiv;
^
/usr/include/c++/4.8.1/cstdlib:228:11: error: ‘::atoll’ has not been declared
using ::atoll;
^
/usr/include/c++/4.8.1/cstdlib:229:11: error: ‘::strtoll’ has not been declared
using ::strtoll;
^
/usr/include/c++/4.8.1/cstdlib:230:11: error: ‘::strtoull’ has not been declared
using ::strtoull;
^
/usr/include/c++/4.8.1/cstdlib:232:11: error: ‘::strtof’ has not been declared
using ::strtof;
^
/usr/include/c++/4.8.1/cstdlib:233:11: error: ‘::strtold’ has not been declared
using ::strtold;
^
/usr/include/c++/4.8.1/cstdlib:241:22: error: ‘__gnu_cxx::lldiv_t’ has not been declared
using ::__gnu_cxx::lldiv_t;
^
/usr/include/c++/4.8.1/cstdlib:243:22: error: ‘__gnu_cxx::_Exit’ has not been declared
using ::__gnu_cxx::_Exit;
^
/usr/include/c++/4.8.1/cstdlib:245:22: error: ‘__gnu_cxx::llabs’ has not been declared
using ::__gnu_cxx::llabs;
^
/usr/include/c++/4.8.1/cstdlib:246:22: error: ‘__gnu_cxx::div’ has not been declared
using ::__gnu_cxx::div;
^
/usr/include/c++/4.8.1/cstdlib:247:22: error: ‘__gnu_cxx::lldiv’ has not been declared
using ::__gnu_cxx::lldiv;
^
/usr/include/c++/4.8.1/cstdlib:249:22: error: ‘__gnu_cxx::atoll’ has not been declared
using ::__gnu_cxx::atoll;
^
/usr/include/c++/4.8.1/cstdlib:250:22: error: ‘__gnu_cxx::strtof’ has not been declared
using ::__gnu_cxx::strtof;
^
/usr/include/c++/4.8.1/cstdlib:251:22: error: ‘__gnu_cxx::strtoll’ has not been declared
using ::__gnu_cxx::strtoll;
^
/usr/include/c++/4.8.1/cstdlib:252:22: error: ‘__gnu_cxx::strtoull’ has not been declared
using ::__gnu_cxx::strtoull;
^
/usr/include/c++/4.8.1/cstdlib:253:22: error: ‘__gnu_cxx::strtold’ has not been declared
using ::__gnu_cxx::strtold;
^
In file included from main.cpp:2:0:
/usr/include/c++/4.8.1/cstdio:95:11: error: ‘::FILE’ has not been declared
using ::FILE;
^
/usr/include/c++/4.8.1/cstdio:96:11: error: ‘::fpos_t’ has not been declared
using ::fpos_t;
^
/usr/include/c++/4.8.1/cstdio:98:11: error: ‘::clearerr’ has not been declared
using ::clearerr;
^
/usr/include/c++/4.8.1/cstdio:99:11: error: ‘::fclose’ has not been declared
using ::fclose;
^
/usr/include/c++/4.8.1/cstdio:100:11: error: ‘::feof’ has not been declared
using ::feof;
^
/usr/include/c++/4.8.1/cstdio:101:11: error: ‘::ferror’ has not been declared
using ::ferror;
^
/usr/include/c++/4.8.1/cstdio:102:11: error: ‘::fflush’ has not been declared
using ::fflush;
^
/usr/include/c++/4.8.1/cstdio:103:11: error: ‘::fgetc’ has not been declared
using ::fgetc;
^
/usr/include/c++/4.8.1/cstdio:104:11: error: ‘::fgetpos’ has not been declared
using ::fgetpos;
^
/usr/include/c++/4.8.1/cstdio:105:11: error: ‘::fgets’ has not been declared
using ::fgets;
^
/usr/include/c++/4.8.1/cstdio:106:11: error: ‘::fopen’ has not been declared
using ::fopen;
^
/usr/include/c++/4.8.1/cstdio:107:11: error: ‘::fprintf’ has not been declared
using ::fprintf;
^
/usr/include/c++/4.8.1/cstdio:108:11: error: ‘::fputc’ has not been declared
using ::fputc;
^
/usr/include/c++/4.8.1/cstdio:109:11: error: ‘::fputs’ has not been declared
using ::fputs;
^
/usr/include/c++/4.8.1/cstdio:110:11: error: ‘::fread’ has not been declared
using ::fread;
^
/usr/include/c++/4.8.1/cstdio:111:11: error: ‘::freopen’ has not been declared
using ::freopen;
^
/usr/include/c++/4.8.1/cstdio:112:11: error: ‘::fscanf’ has not been declared
using ::fscanf;
^
/usr/include/c++/4.8.1/cstdio:113:11: error: ‘::fseek’ has not been declared
using ::fseek;
^
/usr/include/c++/4.8.1/cstdio:114:11: error: ‘::fsetpos’ has not been declared
using ::fsetpos;
^
/usr/include/c++/4.8.1/cstdio:115:11: error: ‘::ftell’ has not been declared
using ::ftell;
^
/usr/include/c++/4.8.1/cstdio:116:11: error: ‘::fwrite’ has not been declared
using ::fwrite;
^
/usr/include/c++/4.8.1/cstdio:117:11: error: ‘::getc’ has not been declared
using ::getc;
^
/usr/include/c++/4.8.1/cstdio:118:11: error: ‘::getchar’ has not been declared
using ::getchar;
^
/usr/include/c++/4.8.1/cstdio:119:11: error: ‘::gets’ has not been declared
using ::gets;
^
/usr/include/c++/4.8.1/cstdio:120:11: error: ‘::perror’ has not been declared
using ::perror;
^
/usr/include/c++/4.8.1/cstdio:121:11: error: ‘::printf’ has not been declared
using ::printf;
^
/usr/include/c++/4.8.1/cstdio:122:11: error: ‘::putc’ has not been declared
using ::putc;
^
/usr/include/c++/4.8.1/cstdio:123:11: error: ‘::putchar’ has not been declared
using ::putchar;
^
/usr/include/c++/4.8.1/cstdio:124:11: error: ‘::puts’ has not been declared
using ::puts;
^
/usr/include/c++/4.8.1/cstdio:125:11: error: ‘::remove’ has not been declared
using ::remove;
^
/usr/include/c++/4.8.1/cstdio:126:11: error: ‘::rename’ has not been declared
using ::rename;
^
/usr/include/c++/4.8.1/cstdio:127:11: error: ‘::rewind’ has not been declared
using ::rewind;
^
/usr/include/c++/4.8.1/cstdio:128:11: error: ‘::scanf’ has not been declared
using ::scanf;
^
/usr/include/c++/4.8.1/cstdio:129:11: error: ‘::setbuf’ has not been declared
using ::setbuf;
^
/usr/include/c++/4.8.1/cstdio:130:11: error: ‘::setvbuf’ has not been declared
using ::setvbuf;
^
/usr/include/c++/4.8.1/cstdio:131:11: error: ‘::sprintf’ has not been declared
using ::sprintf;
^
/usr/include/c++/4.8.1/cstdio:132:11: error: ‘::sscanf’ has not been declared
using ::sscanf;
^
/usr/include/c++/4.8.1/cstdio:133:11: error: ‘::tmpfile’ has not been declared
using ::tmpfile;
^
/usr/include/c++/4.8.1/cstdio:134:11: error: ‘::tmpnam’ has not been declared
using ::tmpnam;
^
/usr/include/c++/4.8.1/cstdio:135:11: error: ‘::ungetc’ has not been declared
using ::ungetc;
^
/usr/include/c++/4.8.1/cstdio:136:11: error: ‘::vfprintf’ has not been declared
using ::vfprintf;
^
/usr/include/c++/4.8.1/cstdio:137:11: error: ‘::vprintf’ has not been declared
using ::vprintf;
^
/usr/include/c++/4.8.1/cstdio:138:11: error: ‘::vsprintf’ has not been declared
using ::vsprintf;
^
/usr/include/c++/4.8.1/cstdio:167:11: error: ‘::snprintf’ has not been declared
using ::snprintf;
^
/usr/include/c++/4.8.1/cstdio:168:11: error: ‘::vfscanf’ has not been declared
using ::vfscanf;
^
/usr/include/c++/4.8.1/cstdio:169:11: error: ‘::vscanf’ has not been declared
using ::vscanf;
^
/usr/include/c++/4.8.1/cstdio:170:11: error: ‘::vsnprintf’ has not been declared
using ::vsnprintf;
^
/usr/include/c++/4.8.1/cstdio:171:11: error: ‘::vsscanf’ has not been declared
using ::vsscanf;
^
/usr/include/c++/4.8.1/cstdio:177:22: error: ‘__gnu_cxx::snprintf’ has not been declared
using ::__gnu_cxx::snprintf;
^
/usr/include/c++/4.8.1/cstdio:178:22: error: ‘__gnu_cxx::vfscanf’ has not been declared
using ::__gnu_cxx::vfscanf;
^
/usr/include/c++/4.8.1/cstdio:179:22: error: ‘__gnu_cxx::vscanf’ has not been declared
using ::__gnu_cxx::vscanf;
^
/usr/include/c++/4.8.1/cstdio:180:22: error: ‘__gnu_cxx::vsnprintf’ has not been declared
using ::__gnu_cxx::vsnprintf;
^
/usr/include/c++/4.8.1/cstdio:181:22: error: ‘__gnu_cxx::vsscanf’ has not been declared
using ::__gnu_cxx::vsscanf;
^
main.cpp: In function ‘int main(int, char**)’:
main.cpp:12:22: error: ‘printf’ was not declared in this scope
printf("\nUsage:");
^
main.cpp:14:11: error: ‘exit’ was not declared in this scope
exit(0);
^
Last edited by MisterEwok (2013-08-29 10:15:07)

Here's a hello code:
#include <cstdio>
using namespace std;
int main ()
printf("\nHello world!\n\n");
return 0;
Compiling gives:
$ g++ -c hello.cpp
In file included from hello.cpp:1:0:
/usr/include/c++/4.8.1/cstdio:95:11: error: ‘::FILE’ has not been declared
using ::FILE;
^
/usr/include/c++/4.8.1/cstdio:96:11: error: ‘::fpos_t’ has not been declared
using ::fpos_t;
^
/usr/include/c++/4.8.1/cstdio:98:11: error: ‘::clearerr’ has not been declared
using ::clearerr;
^
/usr/include/c++/4.8.1/cstdio:99:11: error: ‘::fclose’ has not been declared
using ::fclose;
^
/usr/include/c++/4.8.1/cstdio:100:11: error: ‘::feof’ has not been declared
using ::feof;
^
/usr/include/c++/4.8.1/cstdio:101:11: error: ‘::ferror’ has not been declared
using ::ferror;
^
/usr/include/c++/4.8.1/cstdio:102:11: error: ‘::fflush’ has not been declared
using ::fflush;
^
/usr/include/c++/4.8.1/cstdio:103:11: error: ‘::fgetc’ has not been declared
using ::fgetc;
^
/usr/include/c++/4.8.1/cstdio:104:11: error: ‘::fgetpos’ has not been declared
using ::fgetpos;
^
/usr/include/c++/4.8.1/cstdio:105:11: error: ‘::fgets’ has not been declared
using ::fgets;
^
/usr/include/c++/4.8.1/cstdio:106:11: error: ‘::fopen’ has not been declared
using ::fopen;
^
/usr/include/c++/4.8.1/cstdio:107:11: error: ‘::fprintf’ has not been declared
using ::fprintf;
^
/usr/include/c++/4.8.1/cstdio:108:11: error: ‘::fputc’ has not been declared
using ::fputc;
^
/usr/include/c++/4.8.1/cstdio:109:11: error: ‘::fputs’ has not been declared
using ::fputs;
^
/usr/include/c++/4.8.1/cstdio:110:11: error: ‘::fread’ has not been declared
using ::fread;
^
/usr/include/c++/4.8.1/cstdio:111:11: error: ‘::freopen’ has not been declared
using ::freopen;
^
/usr/include/c++/4.8.1/cstdio:112:11: error: ‘::fscanf’ has not been declared
using ::fscanf;
^
/usr/include/c++/4.8.1/cstdio:113:11: error: ‘::fseek’ has not been declared
using ::fseek;
^
/usr/include/c++/4.8.1/cstdio:114:11: error: ‘::fsetpos’ has not been declared
using ::fsetpos;
^
/usr/include/c++/4.8.1/cstdio:115:11: error: ‘::ftell’ has not been declared
using ::ftell;
^
/usr/include/c++/4.8.1/cstdio:116:11: error: ‘::fwrite’ has not been declared
using ::fwrite;
^
/usr/include/c++/4.8.1/cstdio:117:11: error: ‘::getc’ has not been declared
using ::getc;
^
/usr/include/c++/4.8.1/cstdio:118:11: error: ‘::getchar’ has not been declared
using ::getchar;
^
/usr/include/c++/4.8.1/cstdio:119:11: error: ‘::gets’ has not been declared
using ::gets;
^
/usr/include/c++/4.8.1/cstdio:120:11: error: ‘::perror’ has not been declared
using ::perror;
^
/usr/include/c++/4.8.1/cstdio:121:11: error: ‘::printf’ has not been declared
using ::printf;
^
/usr/include/c++/4.8.1/cstdio:122:11: error: ‘::putc’ has not been declared
using ::putc;
^
/usr/include/c++/4.8.1/cstdio:123:11: error: ‘::putchar’ has not been declared
using ::putchar;
^
/usr/include/c++/4.8.1/cstdio:124:11: error: ‘::puts’ has not been declared
using ::puts;
^
/usr/include/c++/4.8.1/cstdio:125:11: error: ‘::remove’ has not been declared
using ::remove;
^
/usr/include/c++/4.8.1/cstdio:126:11: error: ‘::rename’ has not been declared
using ::rename;
^
/usr/include/c++/4.8.1/cstdio:127:11: error: ‘::rewind’ has not been declared
using ::rewind;
^
/usr/include/c++/4.8.1/cstdio:128:11: error: ‘::scanf’ has not been declared
using ::scanf;
^
/usr/include/c++/4.8.1/cstdio:129:11: error: ‘::setbuf’ has not been declared
using ::setbuf;
^
/usr/include/c++/4.8.1/cstdio:130:11: error: ‘::setvbuf’ has not been declared
using ::setvbuf;
^
/usr/include/c++/4.8.1/cstdio:131:11: error: ‘::sprintf’ has not been declared
using ::sprintf;
^
/usr/include/c++/4.8.1/cstdio:132:11: error: ‘::sscanf’ has not been declared
using ::sscanf;
^
/usr/include/c++/4.8.1/cstdio:133:11: error: ‘::tmpfile’ has not been declared
using ::tmpfile;
^
/usr/include/c++/4.8.1/cstdio:134:11: error: ‘::tmpnam’ has not been declared
using ::tmpnam;
^
/usr/include/c++/4.8.1/cstdio:135:11: error: ‘::ungetc’ has not been declared
using ::ungetc;
^
/usr/include/c++/4.8.1/cstdio:136:11: error: ‘::vfprintf’ has not been declared
using ::vfprintf;
^
/usr/include/c++/4.8.1/cstdio:137:11: error: ‘::vprintf’ has not been declared
using ::vprintf;
^
/usr/include/c++/4.8.1/cstdio:138:11: error: ‘::vsprintf’ has not been declared
using ::vsprintf;
^
/usr/include/c++/4.8.1/cstdio:167:11: error: ‘::snprintf’ has not been declared
using ::snprintf;
^
/usr/include/c++/4.8.1/cstdio:168:11: error: ‘::vfscanf’ has not been declared
using ::vfscanf;
^
/usr/include/c++/4.8.1/cstdio:169:11: error: ‘::vscanf’ has not been declared
using ::vscanf;
^
/usr/include/c++/4.8.1/cstdio:170:11: error: ‘::vsnprintf’ has not been declared
using ::vsnprintf;
^
/usr/include/c++/4.8.1/cstdio:171:11: error: ‘::vsscanf’ has not been declared
using ::vsscanf;
^
/usr/include/c++/4.8.1/cstdio:177:22: error: ‘__gnu_cxx::snprintf’ has not been declared
using ::__gnu_cxx::snprintf;
^
/usr/include/c++/4.8.1/cstdio:178:22: error: ‘__gnu_cxx::vfscanf’ has not been declared
using ::__gnu_cxx::vfscanf;
^
/usr/include/c++/4.8.1/cstdio:179:22: error: ‘__gnu_cxx::vscanf’ has not been declared
using ::__gnu_cxx::vscanf;
^
/usr/include/c++/4.8.1/cstdio:180:22: error: ‘__gnu_cxx::vsnprintf’ has not been declared
using ::__gnu_cxx::vsnprintf;
^
/usr/include/c++/4.8.1/cstdio:181:22: error: ‘__gnu_cxx::vsscanf’ has not been declared
using ::__gnu_cxx::vsscanf;
^
hello.cpp: In function ‘int main()’:
hello.cpp:7:30: error: ‘printf’ was not declared in this scope
printf("\nHello world!\n\n");
^

Similar Messages

  • Xcode isn't compiling Java correctly

    when ever i run a Java program from Xcode, I dont see the <filename>.class file. and i dont want to run UNIX all the time. At school we use TextPad and all is compiled. why isnt Xcode doing this?????????

    Hi Marcin
    The .class files are deeply hidden away in the build directory so they're not visible unless you go looking for them using the Finder - most users never bother. As part of the build process (for a Java Tool project) they're copied inside a jar file (Java Archive). When you select the "Build and Go" command, Xcode runs the java compiler to create the class files, then puts them into a jar file, then it runs the JVM, which uses the jar file to load all the classes in your program. All this happens in the background, so usually you're not even aware that it's happening.
    Hope this makes things a bit clearer
    Bob

  • Compilation with java1.4 vs java1.3

    I have an application which running and compiling well with java1.3.
    We have installed the version java1.4 and the application isn't compiling now!!!
    in my directory src/ I have 2 files:
    1. toto.java [the main] (include "import titi;" and "import Pack.*;" and use class test)
    2. titi.java
    and in a internal package Pack/ I have the file
    test.java which include "import titi;"
    The command line javac *.java is OK under Java1.3.
    An It isn't OK with Java1.4
    in toto.java: class test is not found in Pack/test.java
    Thanks for answering.

    http://java.sun.com/j2se/1.4/compatibility.html#incompatibilities1.4
    Point 8, second bullet.

  • Java 1.5beta compilation help

    I don't know if anyone here has tried the new(ish) java 1.5.0beta, but I can't get it to work for the life of me. If anyone knows why it still seems to compile like 1.4, or if anyone knows where I can get more help, please let me know...
    Specifically, the new Generics functionality should allow me to compile:
    ArrayList<String> listOfStrings = new ArrayList<String>();
    instead of the old version without the "<String>". This isn't compiling with javac 1.5.0, saying that a "(" is expected (just like you'd expect if you tried compiling it with javac 1.4. My version of the compiler is definitely correct (according to javac -version, anyway).
    Any ideas?
    D

    It's ok, I've solved it.
    To compile in 1.5 mode, you need to specify "javac -source 1.5 <filename>". Seems rather roundabout, but I no longer have a problem...
    D

  • Help with compiling error

    Okay, so I've been making a cash register app, and the thing isn't compiling for me. I keep looking over this and I'm not sure why it isn't working, so I was hoping someone could point out what I've done wrong here.
    public class Receipt
            public static void main(String[] args) throws IOException
                    int q;
                    RetailItem retail = new RetailItem("Description", 1, 10.00, 10.00);
                    Scanner keyboard = new Scanner(System.in);
                    System.out.println("Enter quantity: ");
                    q = keyboard.nextInt();
                    CashRegister receipt = new CashRegister(retail, q);
                    FileWriter fwriter = new FileWriter("SalesReceipt");
                    PrintWriter outputFile = new PrintWriter(fwriter);
    "Receipt.java" 31L, 835C                                     1,1           Top
    import java.util.Scanner;
    import java.io.*;
    public class Receipt
            public static void main(String[] args) throws IOException
                    int q;
                    RetailItem retail = new RetailItem("Description", 1, 10.00, 10.00);
                    Scanner keyboard = new Scanner(System.in);
                    System.out.println("Enter quantity: ");
                    q = keyboard.nextInt();
                    CashRegister receipt = new CashRegister(retail, q);
                    FileWriter fwriter = new FileWriter("SalesReceipt");
                    PrintWriter outputFile = new PrintWriter(fwriter);
                    outputFile.println("\tSALES RECEIPT");
                    outputFile.println("Unit Price: $" + retail.getRetail());
                    outputFile.println("Quantity: " + q);
                    outputFile.println("Subtotal: $" + receipt.getSubtotal());
                    outputFile.println("Sales Tax: $" + receipt.getTax());
                    outputFile.println("\nTotal: $" + receipt.getTotal());
            outputFile.close();
    ~
    ~
    ~
    ~
    ~
    ~
    ~
    ~
    ~
    ~
    ~
    ~
    ~
    ~
                                                                                                                                                  1,1           All

    You know, the compiler errors also give you more detail than "isn't compiling for me". Do you expect people here to compile it for you to see the error you're already seeing and witholding?

  • False compiler error

    i have a problem where i change something in a file and then
    compile it says there are these errors in another file not even
    edited. Then i clean the project and it compiles fine. but every
    time i edit i have to clean. very annoying. the only thing i can
    think of that might cause this is maybe the class i edit is not
    written in a standard form for the compiler. but if that was the
    case why would it ever compile and run fine? any help is much
    appreciated. also yes i do have flex 2.01.

    Files are only compiled if they're being used. So if you
    create a class or component but don't reference it, it isn't
    compiled and any problems in that class are not made apparent. But
    then later you make a reference to that class or component, and now
    it's being compiled. So all of the errors become visible.

  • The mouse is frozed

    hey
    i have the mouse Logitech mx500.
    i worked according the wiki (http://wiki.archlinux.org/index.php/Get … ns_Working)
    about month ago the mouse start to frozed.
    any idea?
    # nvidia-settings: X configuration file generated by nvidia-settings
    # nvidia-settings: version 1.0 (buildmeister@builder3) Wed Jun 13 18:40:26 PDT 2007
    # File generated by xorgconfig.
    # Copyright 2004 The X.Org Foundation
    # Permission is hereby granted, free of charge, to any person obtaining a
    # copy of this software and associated documentation files (the "Software"),
    # to deal in the Software without restriction, including without limitation
    # the rights to use, copy, modify, merge, publish, distribute, sublicense,
    # and/or sell copies of the Software, and to permit persons to whom the
    # Software is furnished to do so, subject to the following conditions:
    # The above copyright notice and this permission notice shall be included in
    # all copies or substantial portions of the Software.
    # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
    # The X.Org Foundation BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
    # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
    # OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    # SOFTWARE.
    # Except as contained in this notice, the name of The X.Org Foundation shall
    # not be used in advertising or otherwise to promote the sale, use or other
    # dealings in this Software without prior written authorization from
    # The X.Org Foundation.
    # Refer to the xorg.conf(5) man page for details about the format of
    # this file.
    # Module section -- this section is used to specify
    # which dynamically loadable modules to load.
    # Files section. This allows default font and rgb paths to be set
    # Server flags section.
    # Input devices
    # Core keyboard's InputDevice section
    # Core Pointer's InputDevice section
    # Other input device sections
    # this is optional and is required only if you
    # are using extended input devices. This is for example only. Refer
    # to the xorg.conf man page for a description of the options.
    # Section "InputDevice"
    # Identifier "Mouse2"
    # Driver "mouse"
    # Option "Protocol" "MouseMan"
    # Option "Device" "/dev/mouse2"
    # EndSection
    # Section "InputDevice"
    # Identifier "spaceball"
    # Driver "magellan"
    # Option "Device" "/dev/cua0"
    # EndSection
    # Section "InputDevice"
    # Identifier "spaceball2"
    # Driver "spaceorb"
    # Option "Device" "/dev/cua0"
    # EndSection
    # Section "InputDevice"
    # Identifier "touchscreen0"
    # Driver "microtouch"
    # Option "Device" "/dev/ttyS0"
    # Option "MinX" "1412"
    # Option "MaxX" "15184"
    # Option "MinY" "15372"
    # Option "MaxY" "1230"
    # Option "ScreenNumber" "0"
    # Option "ReportingMode" "Scaled"
    # Option "ButtonNumber" "1"
    # Option "SendCoreEvents"
    # EndSection
    # Section "InputDevice"
    # Identifier "touchscreen1"
    # Driver "elo2300"
    # Option "Device" "/dev/ttyS0"
    # Option "MinX" "231"
    # Option "MaxX" "3868"
    # Option "MinY" "3858"
    # Option "MaxY" "272"
    # Option "ScreenNumber" "0"
    # Option "ReportingMode" "Scaled"
    # Option "ButtonThreshold" "17"
    # Option "ButtonNumber" "1"
    # Option "SendCoreEvents"
    # EndSection
    # Monitor section
    # Any number of monitor sections may be present
    # Graphics device section
    # Any number of graphics device sections may be present
    # Standard VGA Device:
    # Device configured by xorgconfig:
    # Screen sections
    # Any number of screen sections may be present. Each describes
    # the configuration of a single screen. A single specific screen section
    # may be specified from the X server command line with the "-screen"
    # option.
    # ServerLayout sections.
    # Any number of ServerLayout sections may be present. Each describes
    # the way multiple screens are organised. A specific ServerLayout
    # section may be specified from the X server command line with the
    # "-layout" option. In the absence of this, the first section is used.
    # When now ServerLayout section is present, the first Screen section
    # is used alone.
    # Section "DRI"
    # Mode 0666
    # EndSection
    Section "ServerLayout"
    # The Identifier line must be present
    # Each Screen line specifies a Screen section name, and optionally
    # the relative position of other screens. The four names after
    # primary screen name are the screens to the top, bottom, left and right
    # of the primary screen. In this example, screen 2 is located to the
    # right of screen 1.
    # Each InputDevice line specifies an InputDevice section name and
    # optionally some options to specify the way the device is to be
    # used. Those options include "CorePointer", "CoreKeyboard" and
    # "SendCoreEvents".
    Identifier "Simple Layout"
    Screen 0 "Screen0" 0 0
    InputDevice "Evdev Mouse" "CorePointer"
    ##InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"
    EndSection
    Section "Files"
    # The location of the RGB database. Note, this is the name of the
    # file minus the extension (like ".txt" or ".db"). There is normally
    # no need to change the default.
    # RgbPath "/usr/share/X11/rgb"
    # Multiple FontPath entries are allowed (which are concatenated together),
    # as well as specifying multiple comma-separated entries in one FontPath
    # command (or a combination of both methods)
    # FontPath "/usr/lib/X11/fonts/local/"
    # FontPath "/usr/lib/X11/fonts/misc/"
    # FontPath "/usr/lib/X11/fonts/75dpi/:unscaled"
    # FontPath "/usr/lib/X11/fonts/100dpi/:unscaled"
    # FontPath "/usr/lib/X11/fonts/Speedo/"
    # FontPath "/usr/lib/X11/fonts/Type1/"
    # FontPath "/usr/lib/X11/fonts/TrueType/"
    # FontPath "/usr/lib/X11/fonts/freefont/"
    # FontPath "/usr/lib/X11/fonts/75dpi/"
    # FontPath "/usr/lib/X11/fonts/100dpi/"
    # The module search path. The default path is shown here.
    # ModulePath "/usr/lib/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    # This loads the DBE extension module.
    # This loads the miscellaneous extensions module, and disables
    # initialisation of the XFree86-DGA extension within that module.
    # This loads the font modules
    # Load "type1"
    # This loads the GLX module
    Load "glx"
    # This loads the DRI module
    # Load "dri"
    Load "dbe" # Double buffer extension
    SubSection "extmod"
    Option "omit xfree86-dga" # don't initialise the DGA extension
    EndSubSection
    Load "freetype"
    # Load "xtt"
    EndSection
    Section "ServerFlags"
    # Uncomment this to cause a core dump at the spot where a signal is
    # received. This may leave the console in an unusable state, but may
    # provide a better stack trace in the core dump to aid in debugging
    # Option "NoTrapSignals"
    # Uncomment this to disable the <Ctrl><Alt><Fn> VT switch sequence
    # (where n is 1 through 12). This allows clients to receive these key
    # events.
    # Option "DontVTSwitch"
    # Uncomment this to disable the <Ctrl><Alt><BS> server abort sequence
    # This allows clients to receive this key event.
    # Option "DontZap"
    # Uncomment this to disable the <Ctrl><Alt><KP_+>/<KP_-> mode switching
    # sequences. This allows clients to receive these key events.
    # Option "Dont Zoom"
    # Uncomment this to disable tuning with the xvidtune client. With
    # it the client can still run and fetch card and monitor attributes,
    # but it will not be allowed to change them. If it tries it will
    # receive a protocol error.
    # Option "DisableVidModeExtension"
    # Uncomment this to enable the use of a non-local xvidtune client.
    # Option "AllowNonLocalXvidtune"
    # Uncomment this to disable dynamically modifying the input device
    # (mouse and keyboard) settings.
    # Option "DisableModInDev"
    # Uncomment this to enable the use of a non-local client to
    # change the keyboard or mouse settings (currently only xset).
    # Option "AllowNonLocalModInDev"
    Option "Xinerama" "0"
    EndSection
    Section "InputDevice"
    # For most OSs the protocol can be omitted (it defaults to "Standard").
    # When using XQUEUE (only for SVR3 and SVR4, but not Solaris),
    # uncomment the following line.
    # Option "Protocol" "Xqueue"
    # Option "Xleds" "1 2 3"
    # Option "LeftAlt" "Meta"
    # Option "RightAlt" "ModeShift"
    # To customise the XKB settings to suit your keyboard, modify the
    # lines below (which are the defaults). For example, for a non-U.S.
    # keyboard, you will probably want to use:
    # Option "XkbModel" "pc105"
    # If you have a US Microsoft Natural keyboard, you can use:
    # Option "XkbModel" "microsoft"
    # Then to change the language, change the Layout setting.
    # For example, a german layout can be obtained with:
    # Option "XkbLayout" "de"
    # or:
    # Option "XkbLayout" "de"
    # Option "XkbVariant" "nodeadkeys"
    # If you'd like to switch the positions of your capslock and
    # control keys, use:
    # Option "XkbOptions" "ctrl:swapcaps"
    # These are the default XKB settings for Xorg
    # Option "XkbRules" "xorg"
    # Option "XkbModel" "pc105"
    # Option "XkbLayout" "us"
    # Option "XkbVariant" ""
    # Option "XkbOptions" ""
    # Option "XkbDisable"
    ### Identifier "Keyboard1"
    ### Driver "kbd"
    ### Option "AutoRepeat" "500 30"
    # Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
    ### Option "XkbRules" "xorg"
    ### Option "XkbModel" "pc101"
    ### Option "XkbLayout" "us"
    ### Option "XkbVariant" "uss"
    Identifier "Keyboard1"
    Driver "kbd"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "us,il"
    Option "XkbOptions" "grp:alt_shift_toggle,grp_led:scroll"
    EndSection
    ##Section "InputDevice"
    # Identifier and driver
    # the following line.
    # Option "Protocol" "Xqueue"
    # Mouse-speed setting for PS/2 mouse.
    # Option "Resolution" "256"
    # Baudrate and SampleRate are only for some Logitech mice. In
    # almost every case these lines should be omitted.
    # Option "BaudRate" "9600"
    # Option "SampleRate" "150"
    # Mouse wheel mapping. Default is to map vertical wheel to buttons 4 & 5,
    # horizontal wheel to buttons 6 & 7. Change if your mouse has more than
    # 3 buttons and you need to map the wheel to different button ids to avoid
    # conflicts.
    # Emulate3Timeout is the timeout in milliseconds (default is 50ms)
    # Option "Emulate3Buttons"
    # Option "Emulate3Timeout" "50"
    # ChordMiddle is an option for some 3-button Logitech mice
    # Option "ChordMiddle"
    ## Identifier "Mouse1"
    ## Driver "mouse"
    ## Option "Protocol" "Auto" # Auto detect
    # # Option "Device" "/dev/input/mice"
    # When using XQUEUE, comment out the above two lines, and uncomment
    ## Option "ZAxisMapping" "4 5 6 7"
    # Emulate3Buttons is an option for 2-button mice
    ##EndSection
    Section "InputDevice"
    Identifier "Evdev Mouse"
    Driver "evdev"
    Option "Name" "Logitech USB-PS/2 Optical Mouse"
    Option "CorePointer"
    EndSection
    #Section "InputDevice"
    # Identifier "Mouse1"
    # Driver "mouse"
    # Option "Protocol" "Auto" # Auto detect
    # Option "Device" "/dev/input/mice"
    # When using XQUEUE, comment out the above two lines, and uncomment
    # Option "ZAxisMapping" "4 5 6 7"
    # Emulate3Buttons is an option for 2-button mice
    #EndSection
    Section "Monitor"
    # HorizSync is in kHz unless units are specified.
    # HorizSync may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
    # HorizSync 30-64 # multisync
    # HorizSync 31.5, 35.2 # multiple fixed sync frequencies
    # HorizSync 15-25, 30-50 # multiple ranges of sync frequencies
    # VertRefresh is in Hz unless units are specified.
    # VertRefresh may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
    Identifier "793df"
    HorizSync 31.5 - 64.3
    VertRefresh 50.0 - 70.0
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Unknown"
    ModelName "DELL 2007WFP"
    HorizSync 30.0 - 83.0
    VertRefresh 56.0 - 76.0
    EndSection
    Section "Device"
    # The chipset line is optional in most cases. It can be used to override
    # the driver's chipset detection, and should not normally be specified.
    # Chipset "generic"
    # The Driver line must be present. When using run-time loadable driver
    # modules, this line instructs the server to load the specified driver
    # module. Even when not using loadable driver modules, this line
    # indicates which driver should interpret the information in this section.
    # The BusID line is used to specify which of possibly multiple devices
    # this section is intended for. When this line isn't present, a device
    # section can only match up with the primary video device. For PCI
    # devices a line like the following could be used. This line should not
    # normally be included unless there is more than one video device
    # intalled.
    # BusID "PCI:0:10:0"
    # VideoRam 256
    # Clocks 25.2 28.3
    Identifier "Standard VGA"
    Driver "vga"
    VendorName "Unknown"
    BoardName "Unknown"
    EndSection
    Section "Device"
    # unsupported card
    #VideoRam 262144
    # Insert Clocks lines here if appropriate
    Identifier "7600ga"
    Driver "nvidia"
    EndSection
    Section "Device"
    Identifier "Videocard0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce 7600 GS"
    EndSection
    Section "Screen"
    Identifier "Screen 1"
    Device "7600ga"
    Monitor "793df"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 8
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    EndSection
    Section "Screen"
    # Removed Option "metamodes" "1024x768_85 +0+0; 1024x768 +0+0; 800x600 +0+0; 640x480 +0+0"
    Identifier "Screen0"
    Device "Videocard0"
    Monitor "Monitor0"
    DefaultDepth 24
    Option "TwinView" "0"
    Option "metamodes" "1680x1050_60 +0+0; 800x600 +0+0; 640x480 +0+0"
    EndSection
    dmesg
    Linux version 2.6.23-ARCH (root@T-POWA-LX) (gcc version 4.2.2) #1 SMP PREEMPT Sun Nov 18 07:43:05 UTC 2007
    BIOS-provided physical RAM map:
    BIOS-e820: 0000000000000000 - 000000000009f000 (usable)
    BIOS-e820: 000000000009f000 - 00000000000a0000 (reserved)
    BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
    BIOS-e820: 0000000000100000 - 000000007fee0000 (usable)
    BIOS-e820: 000000007fee0000 - 000000007fee3000 (ACPI NVS)
    BIOS-e820: 000000007fee3000 - 000000007fef0000 (ACPI data)
    BIOS-e820: 000000007fef0000 - 000000007ff00000 (reserved)
    BIOS-e820: 00000000f0000000 - 00000000f4000000 (reserved)
    BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
    1150MB HIGHMEM available.
    896MB LOWMEM available.
    found SMP MP-table at 000f5940
    Entering add_active_range(0, 0, 524000) 0 entries of 256 used
    Zone PFN ranges:
    DMA 0 -> 4096
    Normal 4096 -> 229376
    HighMem 229376 -> 524000
    Movable zone start PFN for each node
    early_node_map[1] active PFN ranges
    0: 0 -> 524000
    On node 0 totalpages: 524000
    DMA zone: 32 pages used for memmap
    DMA zone: 0 pages reserved
    DMA zone: 4064 pages, LIFO batch:0
    Normal zone: 1760 pages used for memmap
    Normal zone: 223520 pages, LIFO batch:31
    HighMem zone: 2301 pages used for memmap
    HighMem zone: 292323 pages, LIFO batch:31
    Movable zone: 0 pages used for memmap
    DMI 2.4 present.
    ACPI: RSDP 000F7620, 0024 (r2 Nvidia)
    ACPI: XSDT 7FEE30C0, 0044 (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
    ACPI: FACP 7FEEC480, 00F4 (r3 Nvidia ASUSACPI 42302E31 AWRD 0)
    ACPI: DSDT 7FEE3240, 91E0 (r1 NVIDIA AWRDACPI 1000 MSFT 3000000)
    ACPI: FACS 7FEE0000, 0040
    ACPI: HPET 7FEEC680, 0038 (r1 Nvidia ASUSACPI 42302E31 AWRD 98)
    ACPI: MCFG 7FEEC700, 003C (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
    ACPI: APIC 7FEEC5C0, 007C (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
    ACPI: PM-Timer IO Port: 0x1008
    ACPI: Local APIC address 0xfee00000
    ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    Processor #0 15:11 APIC version 16
    ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    Processor #1 15:11 APIC version 16
    ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23
    ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge)
    ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge)
    ACPI: IRQ0 used by override.
    ACPI: IRQ2 used by override.
    ACPI: IRQ9 used by override.
    ACPI: IRQ14 used by override.
    ACPI: IRQ15 used by override.
    Enabling APIC mode: Flat. Using 1 I/O APICs
    ACPI: HPET id: 0x10de8201 base: 0xfefff000
    Using ACPI (MADT) for SMP configuration information
    Allocating PCI resources starting at 80000000 (gap: 7ff00000:70100000)
    swsusp: Registered nosave memory region: 000000000009f000 - 00000000000a0000
    swsusp: Registered nosave memory region: 00000000000a0000 - 00000000000f0000
    swsusp: Registered nosave memory region: 00000000000f0000 - 0000000000100000
    Built 1 zonelists in Zone order. Total pages: 519907
    Kernel command line: root=/dev/sda2 ro vga=795
    mapped APIC to ffffb000 (fee00000)
    mapped IOAPIC to ffffa000 (fec00000)
    Enabling fast FPU save and restore... done.
    Enabling unmasked SIMD FPU exception support... done.
    Initializing CPU#0
    PID hash table entries: 4096 (order: 12, 16384 bytes)
    Detected 2009.278 MHz processor.
    spurious 8259A interrupt: IRQ7.
    Console: colour dummy device 80x25
    console [tty0] enabled
    Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    Memory: 2071656k/2096000k available (2445k kernel code, 23060k reserved, 817k data, 296k init, 1178496k highmem)
    virtual kernel memory layout:
    fixmap : 0xfff80000 - 0xfffff000 ( 508 kB)
    pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    vmalloc : 0xf8800000 - 0xff7fe000 ( 111 MB)
    lowmem : 0xc0000000 - 0xf8000000 ( 896 MB)
    .init : 0xc0435000 - 0xc047f000 ( 296 kB)
    .data : 0xc0363479 - 0xc042fa5c ( 817 kB)
    .text : 0xc0100000 - 0xc0363479 (2445 kB)
    Checking if this processor honours the WP bit even in supervisor mode... Ok.
    SLUB: Genslabs=22, HWalign=64, Order=0-1, MinObjects=4, CPUs=2, Nodes=1
    Calibrating delay using timer specific routine.. 4022.62 BogoMIPS (lpj=6701795)
    Security Framework v1.0.0 initialized
    Mount-cache hash table entries: 512
    CPU: After generic identify, caps: 178bfbff ebd3fbff 00000000 00000000 00002001 00000000 0000001f 00000000
    CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
    CPU: L2 Cache: 512K (64 bytes/line)
    CPU 0(2) -> Core 0
    CPU: After all inits, caps: 178bfbff ebd3fbff 00000000 00000410 00002001 00000000 0000001f 00000000
    Intel machine check architecture supported.
    Intel machine check reporting enabled on CPU#0.
    Compat vDSO mapped to ffffe000.
    Checking 'hlt' instruction... OK.
    SMP alternatives: switching to UP code
    Early unpacking initramfs... done
    ACPI: Core revision 20070126
    ACPI: Looking for DSDT in initramfs... error, file /DSDT.aml not found.
    CPU0: AMD Athlon(tm) 64 X2 Dual Core Processor 3800+ stepping 02
    SMP alternatives: switching to SMP code
    Booting processor 1/1 eip 3000
    Initializing CPU#1
    Calibrating delay using timer specific routine.. 4020.99 BogoMIPS (lpj=6697594)
    CPU: After generic identify, caps: 178bfbff ebd3fbff 00000000 00000000 00002001 00000000 0000001f 00000000
    CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
    CPU: L2 Cache: 512K (64 bytes/line)
    CPU 1(2) -> Core 1
    CPU: After all inits, caps: 178bfbff ebd3fbff 00000000 00000410 00002001 00000000 0000001f 00000000
    Intel machine check architecture supported.
    Intel machine check reporting enabled on CPU#1.
    CPU1: AMD Athlon(tm) 64 X2 Dual Core Processor 3800+ stepping 02
    Total of 2 processors activated (8042.61 BogoMIPS).
    ENABLING IO-APIC IRQs
    ..TIMER: vector=0x31 apic1=0 pin1=2 apic2=-1 pin2=-1
    Brought up 2 CPUs
    Booting paravirtualized kernel on bare hardware
    NET: Registered protocol family 16
    ACPI: bus type pci registered
    PCI: Using MMCONFIG
    PCI: No mmconfig possible on device 00:18
    Setting up standard PCI resources
    ACPI: EC: Look up EC in DSDT
    ACPI: Interpreter enabled
    ACPI: (supports S0 S1 S3 S4 S5)
    ACPI: Using IOAPIC for interrupt routing
    ACPI: PCI Root Bridge [PCI0] (0000:00)
    PCI: Transparent bridge - 0000:00:06.0
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
    ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
    ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 9 10 *11 14 15)
    ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 10 11 14 15) *0, disabled.
    ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 10 11 14 15) *0, disabled.
    ACPI: PCI Interrupt Link [LNK5] (IRQs 5 7 9 10 11 14 15) *0, disabled.
    ACPI: PCI Interrupt Link [LNK6] (IRQs 5 7 9 *10 11 14 15)
    ACPI: PCI Interrupt Link [LNK7] (IRQs 5 7 9 10 11 14 15) *0, disabled.
    ACPI: PCI Interrupt Link [LNK8] (IRQs 5 7 9 10 11 14 15) *0, disabled.
    ACPI: PCI Interrupt Link [LP2P] (IRQs 5 7 9 10 11 14 15) *0, disabled.
    ACPI: PCI Interrupt Link [LUBA] (IRQs *5 7 9 10 11 14 15)
    ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 *10 11 14 15)
    ACPI: PCI Interrupt Link [LAZA] (IRQs *5 7 9 10 11 14 15)
    ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 10 11 14 15) *0, disabled.
    ACPI: PCI Interrupt Link [LSMB] (IRQs 5 7 9 10 *11 14 15)
    ACPI: PCI Interrupt Link [LUB2] (IRQs 5 7 9 *10 11 14 15)
    ACPI: PCI Interrupt Link [LIDE] (IRQs 5 7 9 10 11 14 15) *0, disabled.
    ACPI: PCI Interrupt Link [LSID] (IRQs 5 7 9 10 *11 14 15)
    ACPI: PCI Interrupt Link [LFID] (IRQs *5 7 9 10 11 14 15)
    ACPI: PCI Interrupt Link [LSA2] (IRQs 5 7 9 *10 11 14 15)
    ACPI: PCI Interrupt Link [APC1] (IRQs 16) *0, disabled.
    ACPI: PCI Interrupt Link [APC2] (IRQs 17) *0
    ACPI: PCI Interrupt Link [APC3] (IRQs 18) *0, disabled.
    ACPI: PCI Interrupt Link [APC4] (IRQs 19) *0, disabled.
    ACPI: PCI Interrupt Link [APC5] (IRQs 16) *0, disabled.
    ACPI: PCI Interrupt Link [APC6] (IRQs 16) *0
    ACPI: PCI Interrupt Link [APC7] (IRQs 16) *0, disabled.
    ACPI: PCI Interrupt Link [APC8] (IRQs 16) *0, disabled.
    ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22 23) *0
    ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22 23) *0
    ACPI: PCI Interrupt Link [APMU] (IRQs 20 21 22 23) *0, disabled.
    ACPI: PCI Interrupt Link [AAZA] (IRQs 20 21 22 23) *0
    ACPI: PCI Interrupt Link [APCS] (IRQs 20 21 22 23) *0
    ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22 23) *0
    ACPI: PCI Interrupt Link [APCM] (IRQs 20 21 22 23) *0, disabled.
    ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22 23) *0, disabled.
    ACPI: PCI Interrupt Link [APSI] (IRQs 20 21 22 23) *0
    ACPI: PCI Interrupt Link [APSJ] (IRQs 20 21 22 23) *0
    ACPI: PCI Interrupt Link [ASA2] (IRQs 20 21 22 23) *0
    Linux Plug and Play Support v0.97 (c) Adam Belay
    pnp: PnP ACPI init
    ACPI: bus type pnp registered
    pnp: PnP ACPI: found 13 devices
    ACPI: ACPI bus type pnp unregistered
    SCSI subsystem initialized
    PCI: Using ACPI for IRQ routing
    PCI: If a device doesn't work, try "pci=routeirq". If it helps, post a report
    NetLabel: Initializing
    NetLabel: domain hash size = 128
    NetLabel: protocols = UNLABELED CIPSOv4
    NetLabel: unlabeled traffic allowed by default
    ACPI: RTC can wake from S4
    Time: hpet clocksource has been installed.
    Switched to high resolution mode on CPU 0
    Switched to high resolution mode on CPU 1
    pnp: 00:01: ioport range 0x1000-0x107f has been reserved
    pnp: 00:01: ioport range 0x1080-0x10ff has been reserved
    pnp: 00:01: ioport range 0x1400-0x147f has been reserved
    pnp: 00:01: ioport range 0x1480-0x14ff has been reserved
    pnp: 00:01: ioport range 0x1800-0x187f has been reserved
    pnp: 00:01: ioport range 0x1880-0x18ff has been reserved
    pnp: 00:0b: iomem range 0xf0000000-0xf3ffffff could not be reserved
    pnp: 00:0c: iomem range 0xcde00-0xcffff has been reserved
    pnp: 00:0c: iomem range 0xf0000-0xf7fff could not be reserved
    pnp: 00:0c: iomem range 0xf8000-0xfbfff could not be reserved
    pnp: 00:0c: iomem range 0xfc000-0xfffff could not be reserved
    PCI: Bridge: 0000:00:06.0
    IO window: disabled.
    MEM window: fde00000-fdefffff
    PREFETCH window: disabled.
    PCI: Bridge: 0000:00:0a.0
    IO window: disabled.
    MEM window: disabled.
    PREFETCH window: disabled.
    PCI: Bridge: 0000:00:0b.0
    IO window: disabled.
    MEM window: disabled.
    PREFETCH window: disabled.
    PCI: Bridge: 0000:00:0c.0
    IO window: disabled.
    MEM window: disabled.
    PREFETCH window: disabled.
    PCI: Bridge: 0000:00:0d.0
    IO window: disabled.
    MEM window: disabled.
    PREFETCH window: disabled.
    PCI: Bridge: 0000:00:0e.0
    IO window: disabled.
    MEM window: disabled.
    PREFETCH window: disabled.
    PCI: Bridge: 0000:00:0f.0
    IO window: a000-afff
    MEM window: fa000000-fcffffff
    PREFETCH window: e0000000-efffffff
    PCI: Setting latency timer of device 0000:00:06.0 to 64
    PCI: Setting latency timer of device 0000:00:0a.0 to 64
    PCI: Setting latency timer of device 0000:00:0b.0 to 64
    PCI: Setting latency timer of device 0000:00:0c.0 to 64
    PCI: Setting latency timer of device 0000:00:0d.0 to 64
    PCI: Setting latency timer of device 0000:00:0e.0 to 64
    PCI: Setting latency timer of device 0000:00:0f.0 to 64
    NET: Registered protocol family 2
    IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
    TCP established hash table entries: 131072 (order: 9, 2097152 bytes)
    TCP bind hash table entries: 65536 (order: 7, 786432 bytes)
    TCP: Hash tables configured (established 131072 bind 65536)
    TCP reno registered
    checking if image is initramfs... it is
    Freeing initrd memory: 1746k freed
    apm: BIOS version 1.2 Flags 0x07 (Driver version 1.16ac)
    apm: disabled - APM is not SMP safe.
    highmem bounce pool size: 64 pages
    VFS: Disk quotas dquot_6.5.1
    Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    Installing knfsd (copyright (C) 1996 [email protected]).
    Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
    io scheduler noop registered
    io scheduler anticipatory registered
    io scheduler deadline registered
    io scheduler cfq registered (default)
    Boot video device is 0000:07:00.0
    PCI: Setting latency timer of device 0000:00:0a.0 to 64
    assign_interrupt_mode Found MSI capability
    Allocate Port Service[0000:00:0a.0:pcie00]
    Allocate Port Service[0000:00:0a.0:pcie03]
    PCI: Setting latency timer of device 0000:00:0b.0 to 64
    assign_interrupt_mode Found MSI capability
    Allocate Port Service[0000:00:0b.0:pcie00]
    Allocate Port Service[0000:00:0b.0:pcie03]
    PCI: Setting latency timer of device 0000:00:0c.0 to 64
    assign_interrupt_mode Found MSI capability
    Allocate Port Service[0000:00:0c.0:pcie00]
    Allocate Port Service[0000:00:0c.0:pcie03]
    PCI: Setting latency timer of device 0000:00:0d.0 to 64
    assign_interrupt_mode Found MSI capability
    Allocate Port Service[0000:00:0d.0:pcie00]
    Allocate Port Service[0000:00:0d.0:pcie03]
    PCI: Setting latency timer of device 0000:00:0e.0 to 64
    assign_interrupt_mode Found MSI capability
    Allocate Port Service[0000:00:0e.0:pcie00]
    Allocate Port Service[0000:00:0e.0:pcie03]
    PCI: Setting latency timer of device 0000:00:0f.0 to 64
    assign_interrupt_mode Found MSI capability
    Allocate Port Service[0000:00:0f.0:pcie00]
    Allocate Port Service[0000:00:0f.0:pcie03]
    vesafb: framebuffer at 0xe0000000, mapped to 0xf8880000, using 10240k, total 262144k
    vesafb: mode is 1280x1024x32, linelength=5120, pages=0
    vesafb: protected mode interface info at c000:c300
    vesafb: pmi: set display start = c00cc336, set palette = c00cc3a0
    vesafb: pmi: ports = 3b4 3b5 3ba 3c0 3c1 3c4 3c5 3c6 3c7 3c8 3c9 3cc 3ce 3cf 3d0 3d1 3d2 3d3 3d4 3d5 3da
    vesafb: scrolling: redraw
    vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    Console: switching to colour frame buffer device 160x64
    fb0: VESA VGA frame buffer device
    isapnp: Scanning for PnP cards...
    isapnp: No Plug & Play device found
    Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing disabled
    serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    RAMDISK driver initialized: 16 RAM disks of 16384K size 1024 blocksize
    loop: module loaded
    input: Macintosh mouse button emulation as /devices/virtual/input/input0
    PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
    PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
    serio: i8042 KBD port at 0x60,0x64 irq 1
    mice: PS/2 mouse device common for all mice
    input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
    TCP cubic registered
    NET: Registered protocol family 1
    NET: Registered protocol family 17
    Using IPI No-Shortcut mode
    Freeing unused kernel memory: 296k freed
    libata version 2.21 loaded.
    pata_amd 0000:00:04.0: version 0.3.9
    PCI: Setting latency timer of device 0000:00:04.0 to 64
    scsi0 : pata_amd
    scsi1 : pata_amd
    ata1: PATA max UDMA/133 cmd 0x000101f0 ctl 0x000103f6 bmdma 0x0001f000 irq 14
    ata2: PATA max UDMA/133 cmd 0x00010170 ctl 0x00010376 bmdma 0x0001f008 irq 15
    ata1.00: ATAPI: PIONEER DVD-RW DVR-111D, 1.23, max UDMA/66
    ata1.00: configured for UDMA/66
    ata2: port disabled. ignoring.
    scsi 0:0:0:0: CD-ROM PIONEER DVD-RW DVR-111D 1.23 PQ: 0 ANSI: 5
    sata_nv 0000:00:05.0: version 3.5
    ACPI: PCI Interrupt Link [APSI] enabled at IRQ 23
    ACPI: PCI Interrupt 0000:00:05.0[A] -> Link [APSI] -> GSI 23 (level, low) -> IRQ 16
    PCI: Setting latency timer of device 0000:00:05.0 to 64
    scsi2 : sata_nv
    scsi3 : sata_nv
    ata3: SATA max UDMA/133 cmd 0x000109f0 ctl 0x00010bf2 bmdma 0x0001dc00 irq 16
    ata4: SATA max UDMA/133 cmd 0x00010970 ctl 0x00010b72 bmdma 0x0001dc08 irq 16
    ata3: SATA link down (SStatus 0 SControl 300)
    ata4: SATA link down (SStatus 0 SControl 300)
    ACPI: PCI Interrupt Link [APSJ] enabled at IRQ 22
    ACPI: PCI Interrupt 0000:00:05.1[b] -> Link [APSJ] -> GSI 22 (level, low) -> IRQ 17
    PCI: Setting latency timer of device 0000:00:05.1 to 64
    scsi4 : sata_nv
    scsi5 : sata_nv
    ata5: SATA max UDMA/133 cmd 0x000109e0 ctl 0x00010be2 bmdma 0x0001c800 irq 17
    ata6: SATA max UDMA/133 cmd 0x00010960 ctl 0x00010b62 bmdma 0x0001c808 irq 17
    ata5: SATA link down (SStatus 0 SControl 300)
    ata6: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    ata6.00: ATA-7: WDC WD2500KS-00MJB0, 02.01C03, max UDMA/133
    ata6.00: 488397168 sectors, multi 1: LBA48
    ata6.00: configured for UDMA/133
    scsi 5:0:0:0: Direct-Access ATA WDC WD2500KS-00M 02.0 PQ: 0 ANSI: 5
    ACPI: PCI Interrupt Link [ASA2] enabled at IRQ 21
    ACPI: PCI Interrupt 0000:00:05.2[C] -> Link [ASA2] -> GSI 21 (level, low) -> IRQ 18
    PCI: Setting latency timer of device 0000:00:05.2 to 64
    scsi6 : sata_nv
    scsi7 : sata_nv
    ata7: SATA max UDMA/133 cmd 0x0001c400 ctl 0x0001c002 bmdma 0x0001b400 irq 18
    ata8: SATA max UDMA/133 cmd 0x0001bc00 ctl 0x0001b802 bmdma 0x0001b408 irq 18
    ata7: SATA link down (SStatus 0 SControl 300)
    ata8: SATA link down (SStatus 0 SControl 300)
    usbcore: registered new interface driver usbfs
    usbcore: registered new interface driver hub
    usbcore: registered new device driver usb
    ACPI: PCI Interrupt Link [APCL] enabled at IRQ 20
    ACPI: PCI Interrupt 0000:00:02.1[b] -> Link [APCL] -> GSI 20 (level, low) -> IRQ 19
    ohci_hcd: 2006 August 04 USB 1.1 'Open' Host Controller (OHCI) Driver
    PCI: Setting latency timer of device 0000:00:02.1 to 64
    ehci_hcd 0000:00:02.1: EHCI Host Controller
    ehci_hcd 0000:00:02.1: new USB bus registered, assigned bus number 1
    ehci_hcd 0000:00:02.1: debug port 1
    PCI: cache line size of 64 is not supported by device 0000:00:02.1
    ehci_hcd 0000:00:02.1: irq 19, io mem 0xfe02e000
    ehci_hcd 0000:00:02.1: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
    sd 5:0:0:0: [sda] 488397168 512-byte hardware sectors (250059 MB)
    sd 5:0:0:0: [sda] Write Protect is off
    sd 5:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 5:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    sd 5:0:0:0: [sda] 488397168 512-byte hardware sectors (250059 MB)
    sd 5:0:0:0: [sda] Write Protect is off
    sd 5:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 5:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    sda: sda1 sda2 sda3 sda4 <<6>usb usb1: configuration #1 chosen from 1 choice
    hub 1-0:1.0: USB hub found
    sda5<6>hub 1-0:1.0: 10 ports detected
    sda6 >
    sd 5:0:0:0: [sda] Attached SCSI disk
    sr0: scsi3-mmc drive: 40x/40x writer cd/rw xa/form2 cdda tray
    Uniform CD-ROM driver Revision: 3.20
    sr 0:0:0:0: Attached scsi CD-ROM sr0
    ACPI: PCI Interrupt Link [APCF] enabled at IRQ 23
    ACPI: PCI Interrupt 0000:00:02.0[A] -> Link [APCF] -> GSI 23 (level, low) -> IRQ 16
    PCI: Setting latency timer of device 0000:00:02.0 to 64
    ohci_hcd 0000:00:02.0: OHCI Host Controller
    ohci_hcd 0000:00:02.0: new USB bus registered, assigned bus number 2
    ohci_hcd 0000:00:02.0: irq 16, io mem 0xfe02f000
    usb usb2: configuration #1 chosen from 1 choice
    hub 2-0:1.0: USB hub found
    hub 2-0:1.0: 10 ports detected
    kjournald starting. Commit interval 5 seconds
    EXT3-fs: mounted filesystem with ordered data mode.
    usb 1-4: new high speed USB device using ehci_hcd and address 3
    usb 1-4: configuration #1 chosen from 1 choice
    hub 1-4:1.0: USB hub found
    hub 1-4:1.0: 4 ports detected
    usb 1-6: new high speed USB device using ehci_hcd and address 4
    usb 2-1: new low speed USB device using ohci_hcd and address 2
    forcedeth.c: Reverse Engineered nForce ethernet driver. Version 0.60.
    ACPI: PCI Interrupt Link [APCH] enabled at IRQ 22
    ACPI: PCI Interrupt 0000:00:08.0[A] -> Link [APCH] -> GSI 22 (level, low) -> IRQ 17
    PCI: Setting latency timer of device 0000:00:08.0 to 64
    forcedeth: using HIGHDMA
    usb 2-1: configuration #1 chosen from 1 choice
    usbcore: registered new interface driver hiddev
    input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:02.0/usb2/2-1/2-1:1.0/input/input2
    input: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:02.0-1
    usbcore: registered new interface driver usbhid
    drivers/hid/usbhid/hid-core.c: v2.6:USB HID core driver
    eth0: forcedeth.c: subsystem: 01043:8239 bound to 0000:00:08.0
    vboxdrv: Trying to deactivate the NMI watchdog permanently...
    vboxdrv: Successfully done.
    input: Power Button (FF) as /devices/virtual/input/input3
    ACPI: Power Button (FF) [PWRF]
    input: Power Button (CM) as /devices/virtual/input/input4
    ACPI: Power Button (CM) [PWRB]
    ACPI: Fan [FAN] (on)
    ACPI: Thermal Zone [THRM] (40 C)
    PPP generic driver version 2.4.2
    sr 0:0:0:0: Attached scsi generic sg0 type 5
    sd 5:0:0:0: Attached scsi generic sg1 type 0
    i2c-adapter i2c-0: nForce2 SMBus adapter at 0x1c00
    i2c-adapter i2c-1: nForce2 SMBus adapter at 0x1c40
    ACPI: PCI Interrupt Link [AAZA] enabled at IRQ 21
    ACPI: PCI Interrupt 0000:00:06.1[b] -> Link [AAZA] -> GSI 21 (level, low) -> IRQ 18
    PCI: Setting latency timer of device 0000:00:06.1 to 64
    rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    rtc0: alarms up to one year, y3k
    parport_pc 00:09: reported by Plug and Play ACPI
    parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE,EPP]
    lp0: using parport0 (interrupt-driven).
    input: PC Speaker as /devices/platform/pcspkr/input/input5
    ppdev: user-space parallel port driver
    EXT3 FS on sda2, internal journal
    ReiserFS: sda3: found reiserfs format "3.6" with standard journal
    ReiserFS: sda3: using ordered data mode
    ReiserFS: sda3: journal params: device sda3, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
    ReiserFS: sda3: checking transaction log (sda3)
    ReiserFS: sda3: Using r5 hash to sort names
    kjournald starting. Commit interval 5 seconds
    EXT3 FS on sda5, internal journal
    EXT3-fs: mounted filesystem with ordered data mode.
    kjournald starting. Commit interval 5 seconds
    EXT3 FS on sda6, internal journal
    EXT3-fs: mounted filesystem with ordered data mode.
    fuse init (API version 7.8)
    Linux agpgart interface v0.102
    nvidia: module license 'NVIDIA' taints kernel.
    ACPI: PCI Interrupt Link [APC6] enabled at IRQ 16
    ACPI: PCI Interrupt 0000:07:00.0[A] -> Link [APC6] -> GSI 16 (level, low) -> IRQ 20
    PCI: Setting latency timer of device 0000:07:00.0 to 64
    NVRM: loading NVIDIA UNIX x86 Kernel Module 100.14.19 Wed Sep 12 14:12:24 PDT 2007
    it87: Found IT8716F chip at 0x290, revision 0
    it87: in3 is VCC (+5V)
    it87: in7 is VCCH (+5V Stand-By)
    NET: Registered protocol family 10
    lo: Disabled Privacy Extensions
    eth0: no IPv6 routers present

    You should be able to get some more precise information from your Xorg logs, but I would bet it is related to the evdev driver. Some of the options in your xorg.conf no longer work with the latest version. For now you should be able to either map your mouse directly to the appropriate /dev/event* entry or change to the standard mouse driver, both of those methods should be in the wiki.
    You are supposed to be able to use the evdev driver without the input section of your xorg.conf by using dbus/hal autodetection, but AFAIK at the moment the xorg-server package still isn't compiled with hal support, so you would have to patch and rebuild the package.

  • Field Merge in Subject Line - Increasing the Hard Bounce Rate?

    Hey All,
    We did a little A/B test recently. By "little" I mean two different tests, 250 recipients in each test). We wanted to test the option to insert Field Merge in the Subject Line. We took 10% of 2 specific groups of costumers and sent the two options:
    1. Salutation LastName, Register Now and Secure a Tuition Scholarship
    VS.
    2. Register Now and Secure a Tuition Scholarship
    As said above, we did the same test twice to 2 different groups.
    The results was, unsurprisingly, in favour of the Subject Line with the Field Merge BUT - - - - - We saw that not only the Open Rates or Clickthroughs were higher, but also Hard Bounce rates were higher (3 Hard Bounces when we used Field Merge vs. 0 when we sent a plain text SL)
    Do you think that the usage of Field Merge in the Subject Line could be the reason for the higher Hard Bounces rates?
    Thank you,
    Ziv

    You should be able to get some more precise information from your Xorg logs, but I would bet it is related to the evdev driver. Some of the options in your xorg.conf no longer work with the latest version. For now you should be able to either map your mouse directly to the appropriate /dev/event* entry or change to the standard mouse driver, both of those methods should be in the wiki.
    You are supposed to be able to use the evdev driver without the input section of your xorg.conf by using dbus/hal autodetection, but AFAIK at the moment the xorg-server package still isn't compiled with hal support, so you would have to patch and rebuild the package.

  • Assigning a 'dynamically created sequence' value to a variable

    in my procedure i am creating a sequence on the fly, i am preparing the name with some passed parameters like below
    v_seq_name := 'seq_'||loadid||v_table_name;
    execute immediate 'CREATE SEQUENCE '||v_seq_name||' MINVALUE 1 MAXVALUE 999999999999999999999999999 START WITH 1 increment by 1 cache 20';
    and now after doing some operations i need to assign the current value of sequence to a number variable i tried following but not working
    1) v_curr_value : = v_seq_name.currval ;
    2) select v_seq_name||'.nextval' into v_curr_value from dual;
    can you please suggest me how i can get the value in plsql block.

    DIVI wrote:
    in my procedure i am creating a sequence on the fly, i am preparing the name with some passed parameters like below
    v_seq_name := 'seq_'||loadid||v_table_name;
    execute immediate 'CREATE SEQUENCE '||v_seq_name||' MINVALUE 1 MAXVALUE 999999999999999999999999999 START WITH 1 increment by 1 cache 20';
    and now after doing some operations i need to assign the current value of sequence to a number variable i tried following but not working
    1) v_curr_value : = v_seq_name.currval ;
    2) select v_seq_name||'.nextval' into v_curr_value from dual;
    can you please suggest me how i can get the value in plsql block.Well, you haven't given the error you are getting but I guess the procedure isn't compiling? You need to execute immediate any reference to the sequence.
    Having said that, your architecture is probably wrong if you are dynamically creating things in a procedure.
    Why do you need to create them dynamically?

  • [SOLVED]xorg 1.6 crashing when holding any keyboard button.

    Hey everybody,
    My X keeps crashing when i hold any button, this is really anoying when typing and using backspace or the arrow keys. I'v downgraded to 1.5 again.
    i hope someone can help. The linuxwacom packages also isn't compiling anymore.
    Last edited by Rio6000 (2009-05-10 05:16:11)

    My problem is that my X dissapears if i hold about any key board button. Even when i'm typing this post i have to be carefull not to hold the backspace to delete some text.
    also i'm running a dual monitor screen setup and when i move my mouse from one screen to the other it passes on to the other screen but it also stays on the first screen.
    and i'm not able to see my virtual consoles anymore, it does switch to them but i don't see anything. when my X crashes it's the same, i should be able to see my console but nothing. it does respond however, when i press the up key and then press enter it starts x again because my last command was startx.
    i'm running a very minimalistic Openbox with tilda on an updated arch directly updated from the official repo with the nvidia driver.
    this is all very anoying
    Last edited by Rio6000 (2009-04-13 13:00:07)

  • JSF editor Bug ?

    Hi everybody i'm trying the new jdeveloper 10.1.3 with jsf support , and after use it sometime, i realize that the jsf editor is not synchronizing very well the components on the backing code with the jsp document , when the backing code class isn't compiling (and it's saved in this state). This is a terrible source of error when you don't know it ...
    the question is , this is a normal behaviour or horrible bug ?

    Thanks, but that's not what i mean, you modify the components in the property inspector, but you don't write the methods code on the property inspector.The problem is when that code isn't compiling, if you keep using the jsp design view, the backing bean stops being updated ... if you dont realize of this bug you got desync the view with the backing ... :S

  • Forte 4j mounting

    I have a filesytem mounted at C:\Program Files\Apache Tomcat 4.0\webapps\ROOT\WEB-INF\Classes
    and then in Classes I have my package com.ora...ext...
    When I compile, classes get turned into Root.com.ora....ect.
    Is this something that is designed. Can't I compile classes there.
    Even if I move it to c:\com.... it isn't compiling right. Is some bug?
    C:\Program Files\Apache Tomcat 4.0\webapps\ROOT\com\ora\jsp\sql\Value.class
    class file contains wrong class: ROOT.com.ora.jsp.sql.Value
    Please remove or make sure it appears in the correct subdirectory of the classpath.
    import com.ora.jsp.sql.Value;

    nevermind
    the forte (studioOne) was setting the compiler to external even though I had it set to set jsp and servlets to internal or fast javac.
    Once I manually changed and compiled each file it was ok
    Sun tools (StudioOne -- forte) are really great though try them if you aren't using them now.
    I have a filesytem mounted at C:\Program Files\Apache
    Tomcat 4.0\webapps\ROOT\WEB-INF\Classes
    and then in Classes I have my package
    com.ora...ext...
    When I compile, classes get turned into
    Root.com.ora....ect.
    Is this something that is designed. Can't I compile
    classes there.
    Even if I move it to c:\com.... it isn't compiling
    right. Is some bug?
    C:\Program Files\Apache Tomcat
    4.0\webapps\ROOT\com\ora\jsp\sql\Value.class
    class file contains wrong class:
    ROOT.com.ora.jsp.sql.Value
    Please remove or make sure it appears in the correct
    subdirectory of the classpath.
    import com.ora.jsp.sql.Value;

  • Is it possible to use in EJB QL syntax "a.id IN (1,2,3,4)"

    I want to execute query like
    public Collection findbyIds(Integer[] ids);
    SELECT ... FROM Orders o WHERE o.id IN (?1) so, it become
    SELECT ... FROM Orders o WHERE o.id IN (1,2,3,4)
    Is that possible?

    I've used 'IN' operator in EJB Finder ejb-ql and it doesn't work. There isn't compile error when building EJB_project.jar, but 'IN' isn't relevant in ejb-ql. Try to change your SQL statement or use weblogic-ejb-ql.
    Best regards: George Moykin

  • Controls running in evaluation mode?

    I am trying to distribute my MS Access Application that contains a couple ComponentWorks controls (cwinstr.ocx and cwanalysis.ocx). I am building the package using the Package & Deployment wizard. However, after installing the application on the applicable computer, when I run the application the CW controls are running evaluation mode.
    I looked in the help file, and all it says is that the program does not contain the correct run-time license. Is this a file that I am supposed to distribute with the program?
    Thanks,
    Osman

    Most ActiveX controls that are sold include licenses that are installed on the development machine and have to be embedded in any EXE or DLL that you distribute. Visual Basic and Visual C++ automatically include these licenses in the EXEs and DLLs that they build if you are using the ActiveX control on a dialog or form. I'm not sure how embedding the licenses would be done in a Microsoft Access database since it isn't compiled and linked into a binary. Consult Microsoft or MSDN for how to distribute an Access database that uses licensed ActiveX controls.
    There is some information in our KB on similar problems with ATL projects in VC++ for which Microsoft had a solution 6155abe7bf57f862568a4006ee41d?OpenDocument>here. We also explain how to manually add these licenses when dynamically creating a control at run-time here.
    Best Regards,
    Chris Matthews
    National Instruments

  • Are deduplication BS methods usable if deduplication is disabled for the OM/BC?

    Good evening,
    I plan to use Oracle EDQ as data quality provider for a Siebel CRM installation (>= 8.1.1.10).
    And, I want to use the Deduplication Business Service Methods, in order to determine if records delivered via interfaces are duplicates or not.
    The deduplication functionality (OM parameter, ...) needs to be disabled in that specific object manager where I will use the Deduplication Business Service Methods.
    Does anyone know if the Deduplication Business Service Methods can be used if the deduplication functionality is disabled for a BC, as well as for the entire object manager?
    Thanks,
    daniel

    You should be able to get some more precise information from your Xorg logs, but I would bet it is related to the evdev driver. Some of the options in your xorg.conf no longer work with the latest version. For now you should be able to either map your mouse directly to the appropriate /dev/event* entry or change to the standard mouse driver, both of those methods should be in the wiki.
    You are supposed to be able to use the evdev driver without the input section of your xorg.conf by using dbus/hal autodetection, but AFAIK at the moment the xorg-server package still isn't compiled with hal support, so you would have to patch and rebuild the package.

Maybe you are looking for

  • Report generation problems on the WinNT target machine

    I'm using report generation VI's to generate a standard report, mixed with text and graphs. In development mode (LV 6.0.2; Win-NT 4.0 SP6)there are no problems to print it. As soon as I make an application (application builder 6.0) and transfer it to

  • Spool print in Excel

    hi experts, in my sm37 spool request i want to download  in execl sheet. by means of ALV so that i can download completly in Horizental diraction ,  no line going to split.. but its layout in in classical list format i am not able to tacke correct fo

  • Meaning of PROTECT APDU command.

    If the PROTECT method is not executed on the new card, does it mean that the PIN or Key object value is not encrypted? Why the OS is encrypting the PIN value? In PIN case I believe that store of the PIN Hash would be secure enough?

  • Shipping Papers (BOL, Packing List) needed for 3rd Party Sales Order

    The Process followed is as follows: Plant "A" enters Sales Orders for a Customer. Sales Orders generate the material requirement on Plant "A" The material req gets turned into a Purchase order on External Vendor. Vendor provides the shipment informat

  • SLD Export, how many elements?

    I'm doing an incremental export from an SLD on a 6.40 system. The status is "Exporting: Performing incremental export: xxxxxxxx" It's been running for about 6 hours, and is up to 700k+ elements. How can i see how many elements there are in total or l