Sponsored Content
The Lounge What is on Your Mind? New Migration Tool: Link to Discourse Community Topic from vB Thread Tools Menu Post 303046184 by Neo on Monday 27th of April 2020 09:23:45 AM
Old 04-27-2020
Update:

I set the link back to community as target="_blank" so it will open in a new tab and not replace the vB post, so it is easy to compare them.
This User Gave Thanks to Neo For This Post:
 

3 More Discussions You Might Find Interesting

1. What is on Your Mind?

VBulletin 3.8 to Discourse on Docker Migration Test Take Two

OK. Like we all do, we learn a lot from tests, test migrations, and so forth. Today, I started from scratch on test migration 2, armed with a lot more knowledge, The main differences are as follows: Installed discourse plugin ruby-bbcode-to-md before starting the install Modified... (30 Replies)
Discussion started by: Neo
30 Replies

2. What is on Your Mind?

VBulletin 3.8 to Discourse on Docker Migration Test Take Four

Test Build 4 on New Server, with changes identified in discourse test builds 2 and 3, primarily: Insuring ruby-bbcode-to-markdown is enabled. Removing line breaks from ICODE to markdown in migration script. Added vbpostid to posts in discourse to setup migrating vb "thanks" to discourse... (28 Replies)
Discussion started by: Neo
28 Replies

3. What is on Your Mind?

Update on vB3 Migration to Discourse - Issues and Status of BBCode Transformations

We "completed" the migration of this vB3 site to Discourse a number of days ago. However, deeper testing by @Scrutinizer and @MadeInGermany revealed that a lot of text was mangled in the migration. We traced these bugs to two issues: A minor bug in the Ruby vbulletin.rb migration script... (19 Replies)
Discussion started by: Neo
19 Replies
atomic_cas(3C)															    atomic_cas(3C)

NAME
atomic_cas, atomic_cas_8, atomic_cas_uchar, atomic_cas_16, atomic_cas_ushort, atomic_cas_32, atomic_cas_uint, atomic_cas_ulong, atomic_cas_64, atomic_cas_ptr - atomic compare and swap operations SYNOPSIS
#include <atomic.h> uint8_t atomic_cas_8(volatile uint8_t *target, uint8_t cmp, uint8_t newval); uchar_t atomic_cas_uchar(volatile uchar_t *target, uchar_t cmp, uchar_t newval); uint16_t atomic_cas_16(volatile uint16_t *target, uint16_t cmp, uint16_t newval); ushort_t atomic_cas_ushort(volatile ushort_t *target, ushort_t cmp, ushort_t newval); uint32_t atomic_cas_32(volatile uint32_t *target, uint32_t cmp, uint32_t newval); uint_t atomic_cas_uint(volatile uint_t *target, uint_t cmp, uint_t newval); ulong_t atomic_cas_ulong(volatile ulong_t *target, ulong_t cmp, ulong_t newval); uint64_t atomic_cas_64(volatile uint64_t *target, uint64_t cmp, uint64_t newval); void *atomic_cas_ptr(volatile void *target, void *cmp, void *newval); These functions enable a compare and swap operation to occur atomically. The value stored in target is compared with cmp. If these values are equal, the value stored in target is replaced with newval. The old value stored in target is returned by the function whether or not the replacement occurred. These functions return the old of *target. No errors are defined. See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Stable | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+ atomic_add(3C), atomic_and(3C), atomic_bits(3C), atomic_dec(3C), atomic_inc(3C), atomic_or(3C), atomic_swap(3C), membar_ops(3C), attributes(5), atomic_ops(9F) 13 May 2005 atomic_cas(3C)
All times are GMT -4. The time now is 12:25 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy