Displaying 4 results from an estimated 4 matches for "definion".
Did you mean:
defintion
2008 Apr 25
1
system-config-cluster problem
I have a 2 node cluster that has been running for a year, and is still
up and working fine. However, a yum update at some point broke
system-config-cluster and it cannot load the management tab anymore,
because it *thinks* the node is not part of a cluster, yet, all of the
definions are there and I can modify them and save, but cannot publish
the changes to the cluster using the tool. Has anyone else experienced
this problem, or know what may be wrong?
2009 Aug 27
0
[LLVMdev] inlining hint
...reflects either a shortcoming on the compiler or
a personality trait on the user. On what scenario it is useful to hint
the compiler about candidates for inlining, instead of requiring it?
OTOH I've seens lots of C++ code where `inline' is used everywhere for
no reason (a lot within class definions). Using it as a hint would
decrease the efficacy of the compiler's heuristics and actually produce
worse code.
--
Óscar
2024 Feb 08
3
[Bug 3667] New: Trailing space is added when parsing Subsystem in sshd_config
...v_assemble(1, &arg); /* quote command
correctly */
arg2 = argv_assemble(ac, av); /* rest of command */
xasprintf(&options->subsystem_args[options->num_subsystems],
"%s %s", arg, arg2);
free(arg2);
Subsystem definion in sshd_config is defined like this.
# override default of no subsystems
Subsystem sftp /usr/libexec/sftp-server
In this case arg2 (rest of command) doesn't have anything but it is
appended followed by arg and put that on subsystem_args. The result
always has trailing space.
This ma...
2009 Aug 27
2
[LLVMdev] inlining hint
When I started this, I deliberately restricted the question to what
should go in the IR. The fact of recording hints in the IR should not
be controversial; it can't be better not to have them than to have them.
Unfortunately, others used this as a springboard for discussing
whether and how the inliner should use those hints. We aren't really
ready to have that discussion,