Skip to content
  • Are you sure you load symbols like "rrPrivKey" ? (these are #define's)

    By the way, are you sure you really need them ? These are pretty internal.

    Note: if you need to attach your own private data somewhere, you should define your own keys for that (don't abuse anybody else's).

  • Author Developer

    rrPrivKey was a real symbol in video driver ABI versions 4 through 7:

    abi4/xorg/randrstr.h:extern DevPrivateKey rrPrivKey;
    abi5/xorg/randrstr.h:extern DevPrivateKey rrPrivKey;
    abi6/xorg/randrstr.h:extern _X_EXPORT DevPrivateKey rrPrivKey;
    abi7/xorg/randrstr.h:extern _X_EXPORT DevPrivateKey rrPrivKey;

    It became a define in commit faeebead.

    We only support ABIs >= 6 in modern drivers, although I'm trying to raise the minimum eventually.

    We do use these symbols for various things in the driver. If you are interested in removing one from the API or have a question about what we need it for, please let me know.

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment