search for: programlisting

Displaying 20 results from an estimated 26 matches for "programlisting".

2005 Mar 27
2
Mountpoint related..
2009 Oct 08
3
TOSHAG-Winbind.xml translate finished and some bug found
.../indexterm> | <indexterm><primary></primary></indexterm> |unneceasary <indexterm><primary></primary></indexterm> | <para> Again, if you would like to run Samba in dual daemon mode, replace: -----winbindd? <programlisting> /usr/local/samba/sbin/winbindd </programlisting> in the script above with: <programlisting> /usr/local/samba/sbin/winbindd -D </programlisting> The <filename>/etc/pam.d/ftp</filename> file can be changed to allow Winbind ftp access in a manner similar to the samb...
2003 Dec 14
22
White space being removed from "Programlisting" elements
Good Morning Mike, I''m finding that when I load a document, XXE is blindly removing all "superfluous" white space from "programlisting" elements. This of course is leading to a real mess (check out the FAQ on the web site :-( ). What can I do to avoid this? -Tom -- Tom Eastep \ Nothing is foolproof to a sufficiently talented fool Shoreline, \ http://shorewall.net Washington USA \ teastep@shorewall.net
2020 Jul 02
0
[PATCH 04/18] alpha: Override READ_ONCE() with barriered implementation
.../alpha/include/asm/barrier.h > > +++ b/arch/alpha/include/asm/barrier.h > > - * For example, the following code would force ordering (the initial > > - * value of "a" is zero, "b" is one, and "p" is "&a"): > > - * > > - * <programlisting> > > - * CPU 0 CPU 1 > > - * > > - * b = 2; > > - * memory_barrier(); > > - * p = &b; q = p; > > - * read_barrier_depends(); > > - *...
2020 Jun 30
0
[PATCH 04/18] alpha: Override READ_ONCE() with barriered implementation
...by data dependencies. See the documentation for - * memory_barrier() for examples and URLs to more information. - * - * For example, the following code would force ordering (the initial - * value of "a" is zero, "b" is one, and "p" is "&a"): - * - * <programlisting> - * CPU 0 CPU 1 - * - * b = 2; - * memory_barrier(); - * p = &b; q = p; - * read_barrier_depends(); - * d = *q; - * </programlisting> - * - * because the read of "*q" depends on the read of "p" and these - * two reads are separated by a read_barrier_d...
2007 Apr 18
1
[RFC] [PATCH] Split host arch headers for UML's benefit
...by data dependencies. See the documentation for + * memory_barrier() for examples and URLs to more information. + * + * For example, the following code would force ordering (the initial + * value of "a" is zero, "b" is one, and "p" is "&a"): + * + * <programlisting> + * CPU 0 CPU 1 + * + * b = 2; + * memory_barrier(); + * p = &b; q = p; + * read_barrier_depends(); + * d = *q; + * </programlisting> + * + * because the read of "*q" depends on the read of "p" and these + * two reads are separated by a read_barrier_d...
2007 Apr 18
1
[RFC] [PATCH] Split host arch headers for UML's benefit
...by data dependencies. See the documentation for + * memory_barrier() for examples and URLs to more information. + * + * For example, the following code would force ordering (the initial + * value of "a" is zero, "b" is one, and "p" is "&a"): + * + * <programlisting> + * CPU 0 CPU 1 + * + * b = 2; + * memory_barrier(); + * p = &b; q = p; + * read_barrier_depends(); + * d = *q; + * </programlisting> + * + * because the read of "*q" depends on the read of "p" and these + * two reads are separated by a read_barrier_d...
2003 Dec 26
13
Remaining .htm? files
Of the remaining HTML files in the Shorewall-docs/ project, the only ones that I want to convert to HTML are: standalone.htm two-interface.htm three-interface.htm Paul -- while file(s) are you working on? -Tom -- Tom Eastep \ Nothing is foolproof to a sufficiently talented fool Shoreline, \ http://shorewall.net Washington USA \ teastep@shorewall.net
2010 Nov 21
0
[ANNOUNCE] libX11 1.4.0
...ilename> tags to show header names specs/libX11: Fix out-of-place text in Chapter 1 specs/libX11: Convert Appendix A tables to real tables xmlrules.in: Add chunked-html rule to manually generate smaller files specs/libX11: Appendix C: convert literallayouts to synopsis or programlisting specs/libX11: Explicitly tag document as English specs/libX11: Fix section headers in Appendix D specs/libX11: App. D: convert literallayouts to synopsis or programlisting specs/libX11: Convert simpler eqn markup to docbook tags specs/libX11: Tag WM_* as <property&g...
2004 Oct 12
12
RFC: Shorewall wiki is going down!
Hello, In reference to http://wiki.rettc.com/wiki.phtml?title=Wiki_Shorewall_FAQ ; Well, after a lot of emails I setup a wiki for shorewall, etc. It has proved to be completely useless. I have noticed one slight distro specific example added, a couple typo additions and fixes, otherwise, all contributions have been in excess (Tom...), or in malign. For my uses it has proven of little use as
2007 Oct 11
0
10 commits - configure.ac doc/Makefile.am doc/swfdec-sections.txt libswfdec/swfdec_buffer.c libswfdec/swfdec_movie_as_drawing.c test/image test/sound
...s function + * + * This is the function prototype for the function that is called for freeing + * the memory pointed to by a buffer. See swfdec_buffer_new() for an example. + */ + GType swfdec_buffer_get_type (void) { @@ -80,7 +89,8 @@ swfdec_buffer_get_type (void) * <informalexample><programlisting>SwfdecBuffer *buffer = swfdec_buffer_new (); * buffer->data = mydata; * buffer->length = mydata_length; - * buffer->free = mydata_freefunc;</programlisting></informalexample> + * buffer->free = mydata_freefunc; + * buffer->priv = mydata_private;</programlisting&...
2007 Jun 29
0
Branch 'as' - 3 commits - doc/Makefile.am doc/swfdec-docs.sgml doc/swfdec-sections.txt libswfdec/swfdec_as_context.c libswfdec/swfdec_as_context.h
...garbage collector to free unused memory. Note - * that running the garbage collector is a potentially dangerous operation, - * since the calling code must ensure that all memory is reachable for the - * garbage collector. Consider the following innocent looking code: - * <informalexample><programlisting>SwfdecAsValue *v = swfdec_as_stack_pop (stack); - * SwfdecAsObject *object = swfdec_as_object_new (context); - * swfdec_as_object_set (object, swfdec_as_context_get_string (context, "something"), v); - * </programlisting></informalexample> - * This code may cause the value...
2020 Jun 30
32
[PATCH 00/18] Allow architectures to override __READ_ONCE()
Hi everyone, This is the long-awaited version two of the patches I previously posted in November last year: https://lore.kernel.org/lkml/20191108170120.22331-1-will at kernel.org/ I ended up parking the series while the READ_ONCE() implementation was being overhauled, but with that merged during the recent merge window and LTO patches being posted again [1], it was time for a refresh. The
2020 Jun 30
32
[PATCH 00/18] Allow architectures to override __READ_ONCE()
Hi everyone, This is the long-awaited version two of the patches I previously posted in November last year: https://lore.kernel.org/lkml/20191108170120.22331-1-will at kernel.org/ I ended up parking the series while the READ_ONCE() implementation was being overhauled, but with that merged during the recent merge window and LTO patches being posted again [1], it was time for a refresh. The
2019 Nov 08
15
[PATCH 00/13] Finish off [smp_]read_barrier_depends()
Hi all, Although [smp_]read_barrier_depends() became part of READ_ONCE() in commit 76ebbe78f739 ("locking/barriers: Add implicit smp_read_barrier_depends() to READ_ONCE()"), it still limps on in the Linux memory model with the sinister hope of attracting innocent new users so that it becomes impossible to remove altogether. Let's strike before it's too late: there's only
2007 Mar 22
0
7 commits - configure.ac doc/swfdec-docs.sgml libswfdec/js libswfdec/swfdec_buffer.c libswfdec/swfdec_buffer.h libswfdec/swfdec_js_movie.c test/trace
...d sizes. It is used to transform a data + * stream that was provided by buffers of random sizes to buffers of the right + * size. + */ +/*** SwfdecBuffer ***/ + +/** + * swfdec_buffer_new: + * + * Creates a new #SwfdecBuffer to be filled by the user. Use like this: + * <informalexample><programlisting>SwfdecBuffer *buffer = swfdec_buffer_new (); + * buffer->data = mydata; + * buffer->length = mydata_length; + * buffer->free = mydata_freefunc;</programlisting></informalexample> + * + * Returns: a new #SwfdecBuffer referencing nothing. + **/ SwfdecBuffer * swfdec_buffer_n...
2015 Mar 09
0
[ANNOUNCE] libX11 1.6.3
...dd links to more tables listing section references specs/XKB: add links for terms in definition list under figure 1.1 specs/XKB: add some more links by hand specs/XKB: fixup various formatting issues in <literallayout>s specs/XKB: fixup various formatting issues in <programlisting>s specs/XKB: add some more indexterms by hand specs/XKB: Fix miscelleanous typos & spelling errors specs/XKB: Add olinks to libX11 for "X Library Functions Affected by Xkb" specs/XKB: Trim leading spaces off text lines specs/XKB: acknowledge my contrib...
2019 Jun 21
0
[ANNOUNCE] libXt 1.2.0
...DOCTYPE consistently in included xml files, to allow using named entities modify xml-files to use named-entities, for easier manipulation corrected some nested list formatting fix ``fake quotes'' fill in titles for some references to ICCCM and X11 documents use programlisting tag rather than workaround for literallayout font. use consistent labeling for xref's use lineannotation tag to solve font mismatches for xref's inside formatted sample code to fit in 80 columns whitespace/formatting fixes use lineannotation tag whitespac...
2007 Sep 13
0
5 commits - libswfdec/Makefile.am libswfdec/swfdec_as_context.c libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_frame_internal.h libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_scope.c libswfdec/swfdec_as_scope.h libswfdec/swfdec_as_script_function.c
...cAsScope: - * @see_also: #SwfdecAsFrame, #SwfdecAsWith - * - * A scope is the abstract base class for the #SwfdecAsWith and #SwfdecAsFrame - * classes. It is used to resolve variable references inside ActionScript. - * Consider the following simple ActionScript code: - * <informalexample><programlisting> - * foo = bar; - * </programlisting></informalexample> - * The variables foo and bar have to be resolved here, so that the script - * engine knows, what object to set them on. This is done by walking the scope - * chain. This chain is build up using With and Frame objects. - */ -G_D...
2014 Apr 14
0
[ANNOUNCE]: Release of nftables 0.2
...of git.netfilter.org:nftables gmputil: use MSF/LSF in import/export functions dependant on host byte order netlink: fix length value of concat data build: fix documentation build doc: documentation update datatypes: rename some types for more consistency doc: fix programlisting indentation doc: change documentation license to CC BY-SA 4.0 doc: fix make install problems Bump version to v0.2